We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d72fdfe commit bc15d71Copy full SHA for bc15d71
bower.json
@@ -6,7 +6,6 @@
6
],
7
"moduleType": [
8
"amd",
9
- "node",
10
"globals"
11
12
"ignore": [
jquery.color.js
@@ -8,7 +8,15 @@
*
* Date: @DATE
*/
-(function( jQuery, undefined ) {
+
+(function(root, factory) {
13
+ if (typeof define === 'function' && define.amd) {
14
+ // AMD. Register as an anonymous module.
15
+ define(['jquery'], factory);
16
+ } else {
17
+ factory(root.jQuery);
18
+ }
19
+})(this, function( jQuery, undefined ) {
20
21
var stepHooks = "backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor",
22
@@ -660,4 +668,4 @@ colors = jQuery.Color.names = {
660
668
_default: "#ffffff"
661
669
};
662
670
663
-}( jQuery ));
671
+});
0 commit comments