diff options
author | hwc487 | 2012-02-22 10:59:02 -0800 |
---|---|---|
committer | hwc487 | 2012-02-22 10:59:02 -0800 |
commit | f5a9123ba661fe83442a873a05bc6a86edc396f8 (patch) | |
tree | 484a03dd1cc89429a434fba0d63d0500f5945851 /js/controllers/color-controller.js | |
parent | 1a72686c9b915c488f9b430995787d2176671561 (diff) | |
parent | 50bb05efbafc9a80f069dfde32988e5cd6826865 (diff) | |
download | ninja-f5a9123ba661fe83442a873a05bc6a86edc396f8.tar.gz |
Merge branch 'ToolFixes' of github.com:mqg734/ninja-internal into integration
Diffstat (limited to 'js/controllers/color-controller.js')
-rwxr-xr-x | js/controllers/color-controller.js | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/js/controllers/color-controller.js b/js/controllers/color-controller.js index e3b15f1c..a6e41dd3 100755 --- a/js/controllers/color-controller.js +++ b/js/controllers/color-controller.js | |||
@@ -322,7 +322,19 @@ exports.ColorController = Montage.create(Component, { | |||
322 | //Simple solid color | 322 | //Simple solid color |
323 | color = this.parseCssToColor(css); | 323 | color = this.parseCssToColor(css); |
324 | } | 324 | } |
325 | //Returning color object (or null if none) | 325 | // TODO - Hack for inconsistent color object -- some workflows set color.color and some color.value |
326 | if(color) | ||
327 | { | ||
328 | if(color.value && !color.color) | ||
329 | { | ||
330 | color.color = color.value; | ||
331 | } | ||
332 | else if(color.color && !color.value) | ||
333 | { | ||
334 | color.value = color.color; | ||
335 | } | ||
336 | } | ||
337 | //Returning color object (or null if none) | ||
326 | return color; | 338 | return color; |
327 | } | 339 | } |
328 | }, | 340 | }, |