tables-init.js 372 B

123456789101112131415
  1. /*
  2. * tablesaw: A set of plugins for responsive tables
  3. * Copyright (c) 2013 Filament Group, Inc.
  4. * MIT License
  5. */
  6. ;(function( $ ) {
  7. // DOM-ready auto-init of plugins.
  8. // Many plugins bind to an "enhance" event to init themselves on dom ready, or when new markup is inserted into the DOM
  9. $( function(){
  10. $( document ).trigger( "enhance.tablesaw" );
  11. });
  12. })( jQuery );