1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00

Update DataTables and connected plugins.

This commit is contained in:
Caleb Mazalevskis 2022-07-02 01:03:08 +08:00
parent 9abaffeef6
commit cdd2db4dec
No known key found for this signature in database
GPG key ID: 082E6BC1046FAB95
688 changed files with 228041 additions and 221112 deletions

View file

@ -0,0 +1,38 @@
/*! Bootstrap 3 styling wrapper for KeyTable
* ©2018 SpryMedia Ltd - datatables.net/license
*/
(function( factory ){
if ( typeof define === 'function' && define.amd ) {
// AMD
define( ['jquery', 'datatables.net-bs', 'datatables.net-keytable'], function ( $ ) {
return factory( $, window, document );
} );
}
else if ( typeof exports === 'object' ) {
// CommonJS
module.exports = function (root, $) {
if ( ! root ) {
root = window;
}
if ( ! $ || ! $.fn.dataTable ) {
$ = require('datatables.net-bs')(root, $).$;
}
if ( ! $.fn.dataTable.KeyTable ) {
require('datatables.net-keytable')(root, $);
}
return factory( $, root, root.document );
};
}
else {
// Browser
factory( jQuery, window, document );
}
}(function( $, window, document, undefined ) {
return $.fn.dataTable;
}));