| 123456789101112131415161718192021222324252627282930 |
- /*!
- * Bootstrap Colorpicker v2.5.2
- * https://itsjavi.com/bootstrap-colorpicker/
- *
- * Originally written by (c) 2012 Stefan Petre
- * Licensed under the Apache License v2.0
- * http://www.apache.org/licenses/LICENSE-2.0.txt
- *
- */
- (function(root, factory) {
- if (typeof define === 'function' && define.amd) {
- // AMD. Register as an anonymous module unless amdModuleId is set
- define(["jquery"], function(jq) {
- return (factory(jq));
- });
- } else if (typeof exports === 'object') {
- // Node. Does not work with strict CommonJS, but
- // only CommonJS-like environments that support module.exports,
- // like Node.
- module.exports = factory(require("jquery"));
- } else if (jQuery && !jQuery.fn.colorpicker) {
- factory(jQuery);
- }
- }(this, function($) {
- 'use strict';
- //@colorpicker-color
- //@colorpicker-defaults
- //@colorpicker-component
- }));
|