Skip to content

Commit

Permalink
fix(dummy): actions to new format, update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Radchenko committed Jul 26, 2018
1 parent 195d58b commit 8ca9f91
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
Empty file.
Empty file removed tests/dummy/app/helpers/.gitkeep
Empty file.
Empty file removed tests/dummy/app/models/.gitkeep
Empty file.
Empty file removed tests/dummy/app/routes/.gitkeep
Empty file.
8 changes: 4 additions & 4 deletions tests/dummy/app/templates/application.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@
</div>

<div class="example">
<div class="rendered">{{pagination-pager count=50 current=1 change='pageChanged' urlTemplate='localhost:4200/pagination-pager/?page={current}'}}</div>
<div class="rendered">{{pagination-pager count=50 current=1 change=(action 'pageChanged') urlTemplate='localhost:4200/pagination-pager/?page={current}'}}</div>
<pre>&#123;&#123;pagination-pager
count=50
current=1
change='pageChanged'
change=(action 'pageChanged')
urlTemplate='localhost:4200/pagination-pager/?page={current}'&#125;&#125;</pre>
</div>

Expand Down Expand Up @@ -135,11 +135,11 @@
</div>

<div class="example">
<div class="rendered">{{pagination-pager count=5 current=2 disabled=true}}</div>
<div class="rendered">{{pagination-pager count=5 current=2 change=(action 'pageChanged') disabled=true}}</div>
<pre>&#123;&#123;pagination-pager
count=5
current=2
change='pageChanged'
change=(action 'pageChanged')
disabled=true&#125;&#125;</pre>
</div>

Expand Down
Empty file.
Empty file removed tests/dummy/app/views/.gitkeep
Empty file.

0 comments on commit 8ca9f91

Please sign in to comment.