12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- (function () {
- 'use strict';
-
- (function (factory) {
- if (typeof define === 'function' && define.amd) {
-
- define(['jquery', 'datatables.net-bs4', 'datatables.net-fixedcolumns'], function ($) {
- return factory($);
- });
- }
- else if (typeof exports === 'object') {
-
- module.exports = function (root, $) {
- if (!root) {
- root = window;
- }
- if (!$ || !$.fn.dataTable) {
-
- $ = require('datatables.net-bs4')(root, $).$;
- }
- if (!$.fn.dataTable.SearchPanes) {
-
- require('datatables.net-fixedcolumns')(root, $);
- }
- return factory($);
- };
- }
- else {
-
- factory(jQuery);
- }
- }(function ($) {
- var dataTable = $.fn.dataTable;
- return dataTable.fixedColumns;
- }));
- }());
|