From 8ce53461fe09f5102deeaedbb87bfc0d4f996ed2 Mon Sep 17 00:00:00 2001
From: Sunil Shetye
Date: Mon, 16 Jul 2018 18:13:55 +0530
Subject: move the options in the loop

---
 js/Branching/MUX.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'js/Branching/MUX.js')

diff --git a/js/Branching/MUX.js b/js/Branching/MUX.js
index 4644be89..2c672a94 100644
--- a/js/Branching/MUX.js
+++ b/js/Branching/MUX.js
@@ -23,11 +23,11 @@ function MUX() {
         return options;
     }
     MUX.prototype.set = function MUX() {
-        this.in1 = parseFloat(arguments[0]["in1"])
-        this.exprs = arguments[0]["exprs"]
         this.exprs = this.graphics.exprs;
         while (true) {
-            [ok,this.in1,this.exprs] = scicos_getvalue("Set MUX block parameters","number of input ports or vector of sizes",list("intvec",-1),this.exprs);
+            var ok = true;
+            this.in1 = parseFloat(arguments[0]["in1"]);
+            this.exprs = arguments[0]["exprs"];
             if (!ok) {
                 break;
             }
-- 
cgit