Latest working copy. GUI cleanup. Need to do inputs, outputs, in cube, type codes and etc. need rendering

This commit is contained in:
Hash Borgir
2022-03-25 21:34:10 -06:00
parent 5ced1b7b18
commit d52b371b59
3129 changed files with 432901 additions and 54432 deletions

View File

@@ -0,0 +1,38 @@
/*! DataTables styling wrapper for Responsive
* ©2018 SpryMedia Ltd - datatables.net/license
*/
(function( factory ){
if ( typeof define === 'function' && define.amd ) {
// AMD
define( ['jquery', 'datatables.net-dt', 'datatables.net-responsive'], 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-dt')(root, $).$;
}
if ( ! $.fn.dataTable.Responsive ) {
require('datatables.net-responsive')(root, $);
}
return factory( $, root, root.document );
};
}
else {
// Browser
factory( jQuery, window, document );
}
}(function( $, window, document, undefined ) {
return $.fn.dataTable;
}));