From 5a28e41a3105338f747b8a30f67000920490c67d Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Fri, 6 Jul 2018 10:38:38 +0530 Subject: make string as the default type --- js/Linear/INTEGRAL.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'js/Linear/INTEGRAL.js') diff --git a/js/Linear/INTEGRAL.js b/js/Linear/INTEGRAL.js index 18890c0f..7d5c5aec 100644 --- a/js/Linear/INTEGRAL.js +++ b/js/Linear/INTEGRAL.js @@ -32,11 +32,11 @@ function INTEGRAL() { return options; } INTEGRAL.prototype.set = function INTEGRAL() { - this.x0 = inverse((arguments[0]["x0"])) - this.reinit = parseFloat((arguments[0]["reinit"])) - this.satur = parseFloat((arguments[0]["satur"])) - this.maxp = parseFloat((arguments[0]["maxp"])) - this.lowp = parseFloat((arguments[0]["lowp"])) + this.x0 = inverse(arguments[0]["x0"]) + this.reinit = parseFloat(arguments[0]["reinit"]) + this.satur = parseFloat(arguments[0]["satur"]) + this.maxp = parseFloat(arguments[0]["maxp"]) + this.lowp = arguments[0]["lowp"] this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; -- cgit