This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from aureliosaraiva/master
Updated and adjusted this addons for run Ember.2.9
- Loading branch information
Showing
15 changed files
with
95 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{{yield}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{{yield (hash child=(component "split-child" parent=this) sash=(component "split-sash" parent=this) ) }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<div class="demo-tab"> | ||
{{#split-view isVertical=true class="splitViewVertical"}} | ||
{{#split-child class="border" register-as=leftChild}} | ||
{{#split-view isVertical=true class="splitViewVertical" as |split|}} | ||
{{#split.child class="border" register-as=leftChild}} | ||
<button {{action 'collapseLeft'}}> Collapse Left </button> | ||
{{partial "ring"}} | ||
{{/split-child}} | ||
{{split-sash}} | ||
{{#split-child class="border" register-as=rightChild}} | ||
{{/split.child}} | ||
{{split.sash}} | ||
{{#split.child class="border" register-as=rightChild}} | ||
<button {{action 'collapseRight'}}> Collapse Right </button> | ||
{{partial "yoda"}} | ||
{{/split-child}} | ||
{{/split.child}} | ||
{{/split-view}} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<div class="demo-tab"> | ||
{{#split-view isVertical=true splitPercentage=30 class="splitViewVertical"}} | ||
{{split-child class="border"}} | ||
{{split-sash}} | ||
{{#split-child}} | ||
{{#split-view isVertical=false}} | ||
{{split-child class="border"}} | ||
{{split-sash}} | ||
{{split-child class="border"}} | ||
{{#split-view isVertical=true splitPercentage=30 class="splitViewVertical" as |split|}} | ||
{{split.child class="border"}} | ||
{{split.sash}} | ||
{{#split.child}} | ||
{{#split-view isVertical=false as |split2|}} | ||
{{split2.child class="border"}} | ||
{{split2.sash}} | ||
{{split2.child class="border"}} | ||
{{/split-view}} | ||
{{/split-child}} | ||
{{/split.child}} | ||
{{/split-view}} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<div class="demo-tab"> | ||
{{#split-view isVertical=false class="splitViewHorizontal"}} | ||
{{split-child class="border"}} | ||
{{split-sash}} | ||
{{#split-child class="composite"}} | ||
{{#split-view isVertical=false}} | ||
{{split-child class="border"}} | ||
{{split-sash}} | ||
{{split-child class="border"}} | ||
{{#split-view isVertical=false class="splitViewHorizontal" as |split|}} | ||
{{split.child class="border"}} | ||
{{split.sash}} | ||
{{#split.child class="composite"}} | ||
{{#split-view isVertical=false as |split2|}} | ||
{{split2.child class="border"}} | ||
{{split2.sash}} | ||
{{split2.child class="border"}} | ||
{{/split-view}} | ||
{{/split-child}} | ||
{{/split.child}} | ||
{{/split-view}} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<div class="demo-tab"> | ||
{{#split-view isVertical=false class="splitViewHorizontal"}} | ||
{{split-child class="border"}} | ||
{{split-sash}} | ||
{{split-child class="border"}} | ||
{{#split-view isVertical=false class="splitViewHorizontal" as |split|}} | ||
{{split.child class="border"}} | ||
{{split.sash}} | ||
{{split.child class="border"}} | ||
{{/split-view}} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<div class="demo-tab"> | ||
{{#split-view isVertical=true class="splitViewVertical"}} | ||
{{split-child class="border"}} | ||
{{split-sash}} | ||
{{#split-child class="composite"}} | ||
{{#split-view isVertical=true}} | ||
{{split-child class="border"}} | ||
{{split-sash}} | ||
{{split-child class="border"}} | ||
{{#split-view isVertical=true class="splitViewVertical" as |split|}} | ||
{{split.child class="border"}} | ||
{{split.sash}} | ||
{{#split.child class="composite"}} | ||
{{#split-view isVertical=true as |split2|}} | ||
{{split2.child class="border"}} | ||
{{split2.sash}} | ||
{{split2.child class="border"}} | ||
{{/split-view}} | ||
{{/split-child}} | ||
{{/split.child}} | ||
{{/split-view}} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<div class="demo-tab"> | ||
{{#split-view isVertical=true class="splitViewVertical"}} | ||
{{#split-child class="border"}} | ||
{{#split-view isVertical=true class="splitViewVertical" as |split|}} | ||
{{#split.child class="border"}} | ||
{{partial "ring"}} | ||
{{/split-child}} | ||
{{split-sash}} | ||
{{#split-child class="border"}} | ||
{{/split.child}} | ||
{{split.sash}} | ||
{{#split.child class="border"}} | ||
{{partial "yoda"}} | ||
{{/split-child}} | ||
{{/split.child}} | ||
{{/split-view}} | ||
</div> |