blob: aa2aeee58500ca7a4fb754a311d80d644e8c02d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/*! FixedColumns 4.0.1
* 2019-2021 SpryMedia Ltd - datatables.net/license
*/
(function () {
'use strict';
/*! Bootstrap 4 integration for DataTables' FixedColumns
* ©2016 SpryMedia Ltd - datatables.net/license
*/
(function (factory) {
if (typeof define === 'function' && define.amd) {
// AMD
define(['jquery', 'datatables.net-bs4', 'datatables.net-fixedcolumns'], 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-bs4')(root, $).$;
}
if (!$.fn.dataTable.SearchPanes) {
// eslint-disable-next-line @typescript-eslint/no-var-requires
require('datatables.net-fixedcolumns')(root, $);
}
return factory($);
};
}
else {
// Browser
factory(jQuery);
}
}(function ($) {
var dataTable = $.fn.dataTable;
return dataTable.fixedColumns;
}));
}());
|