olalonde / handlebars-paginate

Pagination helper for Handlebars.
http://syskall.com/pagination-with-handlebars/
59 stars 21 forks source link

Fixed bug where pagination.page was a string instead of a number #1

Closed ehaughee closed 11 years ago

ehaughee commented 11 years ago

Because of using ===, no type inference is done and thus concatenation instead of addition occurs (ex: line 54) or equality checks fail (ex: line 50).

olalonde commented 11 years ago

Thanks!