aa5a7603babe05dfab4dcfd266ef65477891e37c310598ebaf1ed64971860eb84e5a13f1247b200787084ce78e44b1fe4fcce2d2fc2d8e47aa9aa2d35c02f8 880 B

123456789101112131415161718192021222324252627282930
  1. /*!
  2. * Bootstrap Colorpicker v2.5.2
  3. * https://itsjavi.com/bootstrap-colorpicker/
  4. *
  5. * Originally written by (c) 2012 Stefan Petre
  6. * Licensed under the Apache License v2.0
  7. * http://www.apache.org/licenses/LICENSE-2.0.txt
  8. *
  9. */
  10. (function(root, factory) {
  11. if (typeof define === 'function' && define.amd) {
  12. // AMD. Register as an anonymous module unless amdModuleId is set
  13. define(["jquery"], function(jq) {
  14. return (factory(jq));
  15. });
  16. } else if (typeof exports === 'object') {
  17. // Node. Does not work with strict CommonJS, but
  18. // only CommonJS-like environments that support module.exports,
  19. // like Node.
  20. module.exports = factory(require("jquery"));
  21. } else if (jQuery && !jQuery.fn.colorpicker) {
  22. factory(jQuery);
  23. }
  24. }(this, function($) {
  25. 'use strict';
  26. //@colorpicker-color
  27. //@colorpicker-defaults
  28. //@colorpicker-component
  29. }));