smeserver-manager-jsquery/root/usr/share/javascript/StateRestore/js/stateRestore.bootstrap.mjs

28 lines
916 B
JavaScript
Raw Permalink Normal View History

2024-12-17 17:18:29 +01:00
/*! Bootstrap integration for DataTables' StateRestore
* © SpryMedia Ltd - datatables.net/license
*/
import jQuery from 'jquery';
import DataTable from 'datatables.net-bs';
import StateRestore from 'datatables.net-staterestore';
// Allow reassignment of the $ variable
let $ = jQuery;
$.extend(true, DataTable.StateRestoreCollection.classes, {
checkBox: 'dtsr-check-box form-check-input',
creationButton: 'dtsr-creation-button btn btn-default',
creationForm: 'dtsr-creation-form modal-body',
creationText: 'dtsr-creation-text modal-header',
creationTitle: 'dtsr-creation-title modal-title',
nameInput: 'dtsr-name-input form-control'
});
$.extend(true, DataTable.StateRestore.classes, {
confirmationButton: 'dtsr-confirmation-button btn btn-default',
confirmationTitle: 'dtsr-confirmation title modal-header',
input: 'dtsr-input form-control'
});
export default DataTable;