Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Avoiding from global jQuery variable (issue josecebe#140 fixed)
  • Loading branch information
Eugene Simakin committed Oct 10, 2016
1 parent 7102538 commit 37b27e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jquery.twbsPagination.js
Expand Up @@ -175,7 +175,7 @@
var _this = this;
this.$listContainer.children().remove();
var items = this.buildListItems(pages);
jQuery.each(items, function(key, item){
$.each(items, function(key, item){
_this.$listContainer.append(item);
});

Expand Down
2 changes: 1 addition & 1 deletion jquery.twbsPagination.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 37b27e2

Please sign in to comment.