2
0
mirror of https://github.com/PitPik/tinyColorPicker synced 2025-07-19 07:54:28 -06:00

Added support for AMD module loader.

This commit is contained in:
Munawwar 2015-11-18 00:27:13 +04:00
parent c0847d644d
commit d3d9c6e4d5
2 changed files with 26 additions and 7 deletions

View File

@ -1,4 +1,12 @@
;(function(window, undefined){
(function (factory) {
if (typeof define === 'function' && define.amd) {
define([], function () {
return factory(window);
});
} else {
window.Colors = factory(window);
}
}(function(window, undefined){
"use strict"
var _valueRanges = {
@ -15,7 +23,7 @@
grey = {r: 0.298954, g: 0.586434, b: 0.114612}, // CIE-XYZ 1931
luminance = {r: 0.2126, g: 0.7152, b: 0.0722}, // W3C 2.0
Colors = window.Colors = function(options) {
Colors = function(options) {
this.colors = {RND: {}};
this.options = {
color: 'rgba(204, 82, 37, 0.8)', // init value(s)...
@ -415,4 +423,6 @@
// return Math.max(min, Math.min(max, value)); // faster??
return (value > max ? max : value < min ? min : value);
}
})(window);
return Colors;
}));

View File

@ -1,4 +1,12 @@
;(function(window, $, Colors, undefined){
(function (factory) {
if (typeof define === 'function' && define.amd) {
define(['jquery', './colors'], function (jQuery, Colors) {
return factory(window, jQuery, Colors);
});
} else {
factory(window, jQuery, Colors);
}
}(function(window, $, Colors, undefined){
'use strict';
var $document = $(document),
@ -332,4 +340,5 @@
_selector = '';
};
})(window, jQuery, Colors);
return $;
}));