We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1af67c0 commit 2481d65Copy full SHA for 2481d65
dist/pagination.js
@@ -510,15 +510,19 @@
510
},
511
512
show: function(){
513
- if(container.is(':visible')) return;
+ var self = this;
514
+
515
+ if(self.model.el.is(':visible')) return;
516
- container.show();
517
+ self.model.el.show();
518
519
520
hide: function(){
- if(!container.is(':visible')) return;
521
522
523
+ if(!self.model.el.is(':visible')) return;
524
- container.hide();
525
+ self.model.el.hide();
526
527
528
// Replace the variables of template
0 commit comments