You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.7 KiB
51 lines
1.7 KiB
(function () { |
|
'use strict'; |
|
|
|
(function (factory) { |
|
if (typeof define === 'function' && define.amd) { |
|
// AMD |
|
define(['jquery', 'datatables.net-bs4', 'datatables.net-searchbuilder'], 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-bs4')(root, $).$; |
|
} |
|
if (!$.fn.dataTable.searchBuilder) { |
|
require('datatables.net-searchbuilder')(root, $); |
|
} |
|
return factory($, root, root.document); |
|
}; |
|
} |
|
else { |
|
// Browser |
|
factory(jQuery, window, document); |
|
} |
|
}(function ($, window, document) { |
|
var DataTable = $.fn.dataTable; |
|
$.extend(true, DataTable.SearchBuilder.classes, { |
|
clearAll: 'btn btn-light dtsb-clearAll' |
|
}); |
|
$.extend(true, DataTable.Group.classes, { |
|
add: 'btn btn-light dtsb-add', |
|
clearGroup: 'btn btn-light dtsb-clearGroup', |
|
logic: 'btn btn-light dtsb-logic' |
|
}); |
|
$.extend(true, DataTable.Criteria.classes, { |
|
condition: 'form-control dtsb-condition', |
|
data: 'form-control dtsb-data', |
|
"delete": 'btn btn-light dtsb-delete', |
|
left: 'btn btn-light dtsb-left', |
|
right: 'btn btn-light dtsb-right', |
|
value: 'form-control dtsb-value' |
|
}); |
|
return DataTable.searchPanes; |
|
})); |
|
|
|
}());
|
|
|