mirror of
https://gitlab.com/hashborgir/d2tools.git
synced 2025-12-15 20:33:58 -06:00
Latest working copy. GUI cleanup. Need to do inputs, outputs, in cube, type codes and etc. need rendering
This commit is contained in:
36
res/SearchPanes-2.0.0/js/searchPanes.dataTables.js
Normal file
36
res/SearchPanes-2.0.0/js/searchPanes.dataTables.js
Normal file
@@ -0,0 +1,36 @@
|
||||
/*! Bootstrap integration for DataTables' SearchPanes
|
||||
* ©2016 SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
(function (factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD
|
||||
define(['jquery', 'datatables.net-dt', 'datatables.net-searchpanes'], function ($) {
|
||||
return factory($);
|
||||
});
|
||||
}
|
||||
else if (typeof exports === 'object') {
|
||||
// CommonJS
|
||||
module.exports = function (root, $) {
|
||||
if (!root) {
|
||||
root = window;
|
||||
}
|
||||
if (!$ || !$.fn.dataTable) {
|
||||
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
||||
$ = require('datatables.net-dt')(root, $).$;
|
||||
}
|
||||
if (!$.fn.dataTable.SearchPanes) {
|
||||
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
||||
require('datatables.net-searchpanes')(root, $);
|
||||
}
|
||||
return factory($);
|
||||
};
|
||||
}
|
||||
else {
|
||||
// Browser
|
||||
factory(jQuery);
|
||||
}
|
||||
}(function ($) {
|
||||
'use strict';
|
||||
var dataTable = $.fn.dataTable;
|
||||
return dataTable.searchPanes;
|
||||
}));
|
||||
Reference in New Issue
Block a user