2020-05-20 23:49:50 +00:00
|
|
|
/*! jQuery UI styling wrapper for RowReorder
|
2020-03-31 03:08:46 +00:00
|
|
|
* ©2018 SpryMedia Ltd - datatables.net/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
(function( factory ){
|
|
|
|
if ( typeof define === 'function' && define.amd ) {
|
|
|
|
// AMD
|
2020-05-20 23:49:50 +00:00
|
|
|
define( ['jquery', 'datatables.net-jqui', 'datatables.net-rowreorder'], function ( $ ) {
|
2020-03-31 03:08:46 +00:00
|
|
|
return factory( $, window, document );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
else if ( typeof exports === 'object' ) {
|
|
|
|
// CommonJS
|
|
|
|
module.exports = function (root, $) {
|
|
|
|
if ( ! root ) {
|
|
|
|
root = window;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! $ || ! $.fn.dataTable ) {
|
|
|
|
$ = require('datatables.net-jqui')(root, $).$;
|
|
|
|
}
|
|
|
|
|
2020-05-20 23:49:50 +00:00
|
|
|
if ( ! $.fn.dataTable.RowReorder ) {
|
|
|
|
require('datatables.net-rowreorder')(root, $);
|
2020-03-31 03:08:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return factory( $, root, root.document );
|
|
|
|
};
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Browser
|
|
|
|
factory( jQuery, window, document );
|
|
|
|
}
|
|
|
|
}(function( $, window, document, undefined ) {
|
|
|
|
|
|
|
|
return $.fn.dataTable;
|
|
|
|
|
|
|
|
}));
|