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.

select.bootstrap4.js 978B

123456789101112131415161718192021222324252627282930313233343536
  1. /*! Bootstrap 4 styling wrapper for Select
  2. * ©2018 SpryMedia Ltd - datatables.net/license
  3. */
  4. (function (factory) {
  5. if (typeof define === 'function' && define.amd) {
  6. // AMD
  7. define(['jquery', 'datatables.net-bs4', 'datatables.net-select'], function ($) {
  8. return factory($, window, document);
  9. });
  10. } else if (typeof exports === 'object') {
  11. // CommonJS
  12. module.exports = function (root, $) {
  13. if (!root) {
  14. root = window;
  15. }
  16. if (!$ || !$.fn.dataTable) {
  17. $ = require('datatables.net-bs4')(root, $).$;
  18. }
  19. if (!$.fn.dataTable.select) {
  20. require('datatables.net-select')(root, $);
  21. }
  22. return factory($, root, root.document);
  23. };
  24. } else {
  25. // Browser
  26. factory(jQuery, window, document);
  27. }
  28. }(function ($, window, document, undefined) {
  29. return $.fn.dataTable;
  30. }));