add fontawesome and datatables package
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
(function (factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD
|
||||
define(['jquery', 'datatables.net-dt', '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-dt')(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;
|
||||
return DataTable.searchPanes;
|
||||
}));
|
||||
|
||||
}());
|
||||
Reference in New Issue
Block a user