40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
|
(function (factory) {
|
||
|
if (typeof define === 'function' && define.amd) {
|
||
|
// AMD
|
||
|
define(['jquery', 'datatables.net-ju', 'datatables.net-searchpanes'], function ($) {
|
||
|
return factory($, window, document);
|
||
|
});
|
||
|
}
|
||
|
else if (typeof exports === 'object') {
|
||
|
// CommonJS
|
||
|
module.exports = function (root, $) {
|
||
|
if (!root) {
|
||
|
root = window;
|
||
|
}
|
||
|
if (!$ || !$.fn.dataTable) {
|
||
|
$ = require('datatables.net-ju')(root, $).$;
|
||
|
}
|
||
|
if (!$.fn.dataTable.searchPanes) {
|
||
|
require('datatables.net-searchpanes')(root, $);
|
||
|
}
|
||
|
return factory($, root, root.document);
|
||
|
};
|
||
|
}
|
||
|
else {
|
||
|
// Browser
|
||
|
factory(jQuery, window, document);
|
||
|
}
|
||
|
}(function ($, window, document) {
|
||
|
'use strict';
|
||
|
var DataTable = $.fn.dataTable;
|
||
|
$.extend(true, DataTable.SearchPane.classes, {
|
||
|
disabledButton: 'dtsp-paneInputButton dtsp-dull',
|
||
|
paneButton: 'dtsp-paneButton ui-button',
|
||
|
topRow: 'dtsp-topRow ui-state-default'
|
||
|
});
|
||
|
$.extend(true, DataTable.SearchPanes.classes, {
|
||
|
clearAll: 'dtsp-clearAll ui-button'
|
||
|
});
|
||
|
return DataTable.searchPanes;
|
||
|
}));
|