Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
cceconvenors /
js /
editor /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
dataTables.editor.js
234.78
KB
-rw-r--r--
2021-07-01 11:35
dataTables.editor.min.js
75.96
KB
-rw-r--r--
2021-07-01 11:35
editor.bootstrap.js
5.74
KB
-rw-r--r--
2021-07-01 11:35
editor.bootstrap.min.js
5.43
KB
-rw-r--r--
2021-07-01 11:35
editor.bootstrap4.js
5.7
KB
-rw-r--r--
2021-07-01 11:35
editor.bootstrap4.min.js
5.47
KB
-rw-r--r--
2021-07-01 11:35
editor.bootstrap5.js
5.71
KB
-rw-r--r--
2021-07-01 11:35
editor.bootstrap5.min.js
5.51
KB
-rw-r--r--
2021-07-01 11:35
editor.foundation.js
3.11
KB
-rw-r--r--
2021-07-01 11:35
editor.foundation.min.js
1.76
KB
-rw-r--r--
2021-07-01 11:35
editor.jqueryui.js
3.73
KB
-rw-r--r--
2021-07-01 11:35
editor.jqueryui.min.js
4.36
KB
-rw-r--r--
2021-07-01 11:35
editor.semanticui.js
4.89
KB
-rw-r--r--
2021-07-01 11:35
editor.semanticui.min.js
2.54
KB
-rw-r--r--
2021-07-01 11:35
Save
Rename
/*! Foundation integration for DataTables' Editor * ©2015 SpryMedia Ltd - datatables.net/license */ (function( factory ){ if ( typeof define === 'function' && define.amd ) { // AMD define( ['jquery', 'datatables.net-zf', 'datatables.net-editor'], 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-zf')(root, $).$; } if ( ! $.fn.dataTable.Editor ) { require('datatables.net-editor')(root, $); } return factory( $, root, root.document ); }; } else { // Browser factory( jQuery, window, document ); } }(function( $, window, document, undefined ) { 'use strict'; var DataTable = $.fn.dataTable; /* * Set the default display controller to be our foundation control */ DataTable.Editor.defaults.display = "foundation"; /* * Change the default classes from Editor to be classes for Foundation */ $.extend( true, $.fn.dataTable.Editor.classes, { field: { wrapper: "DTE_Field row", label: "small-4 columns inline", input: "small-8 columns", error: "error", multiValue: "panel radius multi-value", multiInfo: "small", multiRestore: "panel radius multi-restore", "msg-labelInfo": "label secondary", "msg-info": "label secondary", "msg-message": "label secondary", "msg-error": "label alert" }, form: { button: "button small", buttonInternal: "button small" } } ); /* * Foundation display controller - this is effectively a proxy to the Foundation * modal control. */ var shown = false; var reveal; const dom = { content: $( '<div class="reveal reveal-modal DTED" data-reveal></div>' ), close: $('<button class="close close-button">×</div>') }; DataTable.Editor.display.foundation = $.extend( true, {}, DataTable.Editor.models.displayController, { init: function ( dte ) { if (! reveal) { reveal = new window.Foundation.Reveal( dom.content, { closeOnClick: false } ); } return DataTable.Editor.display.foundation; }, open: function ( dte, append, callback ) { var content = dom.content; content.children().detach(); content.append( append ); content.prepend( dom.close ); dom.close .attr('title', dte.i18n.close) .off('click.dte-zf') .on('click.dte-zf', function () { dte.close('icon'); }); $(document) .off('click.dte-zf') .on('click.dte-zf', 'div.reveal-modal-bg, div.reveal-overlay', function (e) { if ( $(e.target).closest(dom.content).length ) { return; } dte.background(); } ); if ( shown ) { if ( callback ) { callback(); } return; } shown = true; $(dom.content) .one('open.zf.reveal', function () { if ( callback ) { callback(); } }); reveal.open(); }, close: function ( dte, callback ) { if (shown) { reveal.close(); shown = false; } if ( callback ) { callback(); } }, node: function ( dte ) { return dom.content[0]; } } ); return DataTable.Editor; }));