Skip to content

Commit

Permalink
Add explicit color dep to colorjoe
Browse files Browse the repository at this point in the history
  • Loading branch information
bebraw committed May 4, 2012
1 parent 4877f3c commit e534f13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/colorjoe.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(function(root, factory) {
if(typeof define === 'function' && define.amd) define(factory);
else root.colorjoe = factory();
}(this, function() {
if(typeof define === 'function' && define.amd) define(['./color'], factory);
else root.colorjoe = factory(root.color);
}(this, function(color) {
var ret = function(o) {
o.cbs = o.cbs || {};

Expand Down

0 comments on commit e534f13

Please sign in to comment.