diff options
Diffstat (limited to 'js/Sinks/CMATVIEW.js')
-rw-r--r-- | js/Sinks/CMATVIEW.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/Sinks/CMATVIEW.js b/js/Sinks/CMATVIEW.js index 95a83038..3789d80b 100644 --- a/js/Sinks/CMATVIEW.js +++ b/js/Sinks/CMATVIEW.js @@ -34,9 +34,9 @@ function CMATVIEW() { return options; } CMATVIEW.prototype.set = function CMATVIEW() { - this.colormap = parseFloat((arguments[0]["colormap"])) - this.cmin = parseFloat((arguments[0]["cmin"])) - this.cmax = parseFloat((arguments[0]["cmax"])) + this.colormap = parseFloat(arguments[0]["colormap"]) + this.cmin = parseFloat(arguments[0]["cmin"]) + this.cmax = parseFloat(arguments[0]["cmax"]) this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; |