Guest User

Untitled

a guest
Jun 20th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. propublica.views.sortable = propublica.View.extend({
  2. tag : 'table',
  3. cssClass : 'sortable',
  4.  
  5. render : function(){
  6. var self = this;
  7. _.defer(function(){
  8. self.el.tablesorter({
  9. widgets: [ 'zebra']
  10. });
  11. });
  12. }
  13.  
  14. });
Add Comment
Please, Sign In to add comment