diff options
Diffstat (limited to 'js/Linear/TIME_DELAY.js')
-rw-r--r-- | js/Linear/TIME_DELAY.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/Linear/TIME_DELAY.js b/js/Linear/TIME_DELAY.js index d62c8ae4..fc9aa70e 100644 --- a/js/Linear/TIME_DELAY.js +++ b/js/Linear/TIME_DELAY.js @@ -30,9 +30,9 @@ function TIME_DELAY() { return options; } TIME_DELAY.prototype.set = function TIME_DELAY() { - this.T = parseFloat((arguments[0]["T"])) - this.init = parseFloat((arguments[0]["init"])) - this.N = parseFloat((arguments[0]["N"])) + this.T = parseFloat(arguments[0]["T"]) + this.init = parseFloat(arguments[0]["init"]) + this.N = parseFloat(arguments[0]["N"]) this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; |