Show More
Commit Description:
wip
Commit Description:
wip
References:
File last commit:
Show/Diff file:
Action:
vendor/javascript/datatables/FixedColumns-4.1.0/js/fixedColumns.foundation.js
| 36 lines
| 1.1 KiB
| application/javascript
| JavascriptLexer
|
r866 | /*! Foundation integration for DataTables' FixedColumns | |||
* ©2016 SpryMedia Ltd - datatables.net/license | ||||
*/ | ||||
(function (factory) { | ||||
if (typeof define === 'function' && define.amd) { | ||||
// AMD | ||||
define(['jquery', 'datatables.net-zf', '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-zf')(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 ($) { | ||||
'use strict'; | ||||
var dataTable = $.fn.dataTable; | ||||
return dataTable.fixedColumns; | ||||
})); | ||||