32 lines
948 B
JavaScript
32 lines
948 B
JavaScript
|
(function (factory) {
|
||
|
if (typeof define === 'function' && define.amd) {
|
||
|
// AMD
|
||
|
define(['jquery', 'datatables.net-dt', '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-dt')(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;
|
||
|
return DataTable.searchPanes;
|
||
|
}));
|