/var/www/clients/client1/web2/web/admin/js
NameSizeModeActions
bootstrap.js584580644editdlrm
bootstrap.min.js277260644editdlrm
data-generator.js57600644editdlrm
drag.js140310644editdlrm
DT_bootstrap.js45460644editdlrm
footable.filter.js41700644editdlrm
footable.js257170644editdlrm
footable.paginate.js50200644editdlrm
footable.plugin.template.js12150644editdlrm
footable.sortable.js54650644editdlrm
html5shiv.js23760644editdlrm
jquery-ui-1.8.min.js2104230644editdlrm
jquery.min.js916680644editdlrm
jquery.validate.js394430644editdlrm
respond.min.js40350644editdlrm
twitter-bootstrap-hover-dropdown.js32320644editdlrm
twitter-bootstrap-hover-dropdown.min.js13760644editdlrm
Edit: /var/www/clients/client1/web2/web/admin/js/footable.plugin.template.js (1215B)
(function ($, w, undefined) { if (w.footable == undefined || w.foobox == null) throw new Error('Please check and make sure footable.js is included in the page and is loaded prior to this script.'); var defaults = { /* Plugin options here, example: var defaults = { myPlugin: { enabled: true } }; This would allow you to access this option using ft.options.myPlugin.enabled */ }; function MyPlugin() { var p = this; p.name = 'Footable MyPlugin'; p.init = function(ft) { $(ft.table).bind({ /* Bind to relevant events here to modify/add functionality to Footable, example: $(ft.table).bind({ 'footable_initialized': function(e){ if (e.ft.options.myPlugin.enabled == true){ alert('Hello World'); } } }); This would listen for the 'footable_initialized' event and when called check if the plugin is enabled and if it is alert 'Hello World' to the user. */ }); }; }; w.footable.plugins.register(new MyPlugin(), defaults); })(jQuery, window);