27 lines
662 B
Plaintext
27 lines
662 B
Plaintext
/*!
|
|
* Bootstrap Colorpicker v//@version
|
|
* http://mjolnic.github.io/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(factory) {
|
|
"use strict";
|
|
if (typeof exports === 'object') {
|
|
module.exports = factory(window.jQuery);
|
|
} else if (typeof define === 'function' && define.amd) {
|
|
define(['jquery'], factory);
|
|
} else if (window.jQuery && !window.jQuery.fn.colorpicker) {
|
|
factory(window.jQuery);
|
|
}
|
|
}(function($) {
|
|
'use strict';
|
|
|
|
//@colorpicker-color
|
|
//@colorpicker-defaults
|
|
//@colorpicker-component
|
|
}));
|