From 44a3807a94783e831070f0e003340af58dc64d16 Mon Sep 17 00:00:00 2001
From: Sunil Shetye
Date: Wed, 11 Jul 2018 17:51:05 +0530
Subject: change graphics to object

---
 js/NonLinear/PRODUCT.js | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

(limited to 'js/NonLinear/PRODUCT.js')

diff --git a/js/NonLinear/PRODUCT.js b/js/NonLinear/PRODUCT.js
index 0b180388..0b15d8d8 100644
--- a/js/NonLinear/PRODUCT.js
+++ b/js/NonLinear/PRODUCT.js
@@ -25,9 +25,9 @@ function PRODUCT() {
     PRODUCT.prototype.set = function PRODUCT() {
         this.sgn = inverse(arguments[0]["sgn"])
         this.x = arg1;
-        var graphics = arg1.graphics;
+        this.graphics = arg1.graphics;
         this.model = arg1.model;
-        var exprs = graphics.exprs;
+        var exprs = this.graphics.exprs;
         while (true) {
             [ok,this.sgn,exprs] = scicos_getvalue([["         Set multiplication block parameters"],["(multiplication is set with + 1, division with -1)"],[""]],"Number of inputs or sign vector",list("vec",-1),exprs);
             if (!ok) {
@@ -57,15 +57,15 @@ function PRODUCT() {
                 }
             }
             if (ok) {
-                var tmpvar0 = check_io(this.model,graphics,in1,nout,[],[])
-                this.model = tmpvar0[0]
-                var graphics = tmpvar0[1]
+                var tmpvar0 = check_io(this.model,this.graphics,in1,nout,[],[]);
+                this.model = tmpvar0[0];
+                this.graphics = tmpvar0[1];
                 var ok = tmpvar0[2];
             }
             if (ok) {
                 this.model.ipar = new ScilabDouble([this.sgn]);
-                graphics.exprs = exprs;
-                this.x.graphics = graphics;
+                this.graphics.exprs = new ScilabDouble([exprs]);
+                this.x.graphics = this.graphics;
                 this.x.model = this.model;
                 break;
             }
-- 
cgit