add fontawesome and datatables package

This commit is contained in:
Zakwan Hamdan
2020-10-22 09:21:18 +08:00
parent cb45d1b59a
commit b09b980c95
2089 changed files with 332538 additions and 1917 deletions
@@ -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;
}));
}());