Skip to content

Commit

Permalink
Merge pull request #70 from passionintellectual/develop
Browse files Browse the repository at this point in the history
prevPage decrements into negative values.
  • Loading branch information
dlasky committed Mar 28, 2016
2 parents 4906b6a + 216c63f commit 371c28d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/behaviors/pageable.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
},

prevPage: function() {
if (this.page > 0);
if (this.page > 0)
this.page--;
},

Expand Down

0 comments on commit 371c28d

Please sign in to comment.