-
-
Save timlianov/0eb19c508bd5e496f8c547bfd8a3fd8b to your computer and use it in GitHub Desktop.
Add bootstrap style to Backgrid.Paginator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var Paginator = Backgrid.Extension.Paginator = Backgrid.Extension.Paginator.extend({ | |
| render: function(){ | |
| Paginator.__super__.render.apply(this,arguments); | |
| this.$el.find('ul').addClass('pagination'); | |
| return this; | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment