Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Some missing return statements added
  • Loading branch information
Eugene committed Mar 11, 2014
1 parent 242d003 commit 43cfd96
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions jquery.twbsPagination.js
Expand Up @@ -67,10 +67,13 @@
this.setupEvents();

this.$element.trigger('page', this.options.startPage);

return this;
},

destroy: function () {
this.$element.empty();
return this;
},

show: function (page) {
Expand All @@ -82,6 +85,7 @@
this.setupEvents();

this.$element.trigger('page', page);
return this;
},

buildListItems: function (pages) {
Expand Down

0 comments on commit 43cfd96

Please sign in to comment.