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/MatrixOp/MATSUM.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'js/MatrixOp/MATSUM.js') diff --git a/js/MatrixOp/MATSUM.js b/js/MatrixOp/MATSUM.js index 4614a4ac..92d22248 100644 --- a/js/MatrixOp/MATSUM.js +++ b/js/MatrixOp/MATSUM.js @@ -36,9 +36,9 @@ function MATSUM() { return options; } MATSUM.prototype.set = function MATSUM() { - this.typ = inverse((arguments[0]["typ"])) - this.decomptyp = parseFloat((arguments[0]["decomptyp"])) - this.lab = parseFloat((arguments[0]["lab"])) + this.typ = inverse(arguments[0]["typ"]) + this.decomptyp = arguments[0]["decomptyp"] + this.lab = arguments[0]["lab"] this.x = arg1; model = arg1.model; graphics = arg1.graphics; -- cgit