Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save timlianov/0eb19c508bd5e496f8c547bfd8a3fd8b to your computer and use it in GitHub Desktop.

Select an option

Save timlianov/0eb19c508bd5e496f8c547bfd8a3fd8b to your computer and use it in GitHub Desktop.
Add bootstrap style to Backgrid.Paginator
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