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/PDE/PDE.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'js/PDE/PDE.js') diff --git a/js/PDE/PDE.js b/js/PDE/PDE.js index 91b3e33a..3268c0e0 100644 --- a/js/PDE/PDE.js +++ b/js/PDE/PDE.js @@ -23,9 +23,9 @@ function PDE() { return options; } PDE.prototype.set = function PDE() { - this.okk = parseBoolean((arguments[0]["okk"])) - this.rdnom = parseFloat((arguments[0]["rdnom"])) - this.lab = parseFloat((arguments[0]["lab"])) + this.okk = parseBoolean(arguments[0]["okk"]) + this.rdnom = arguments[0]["rdnom"] + this.lab = arguments[0]["lab"] this.x = arg1; graphics = arg1.graphics; label = graphics.exprs; -- cgit