diff options
author | Sunil Shetye | 2018-07-16 18:13:55 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-07-18 11:36:15 +0530 |
commit | 8ce53461fe09f5102deeaedbb87bfc0d4f996ed2 (patch) | |
tree | 6b766b7c32effff12fa48cff99f11b9420136610 /js/Branching/SELECT_m.js | |
parent | 5929c9088b6d5dcd23e8bbf9abdc5c9b4a49df1f (diff) | |
download | sci2js-8ce53461fe09f5102deeaedbb87bfc0d4f996ed2.tar.gz sci2js-8ce53461fe09f5102deeaedbb87bfc0d4f996ed2.tar.bz2 sci2js-8ce53461fe09f5102deeaedbb87bfc0d4f996ed2.zip |
move the options in the loop
Diffstat (limited to 'js/Branching/SELECT_m.js')
-rw-r--r-- | js/Branching/SELECT_m.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/js/Branching/SELECT_m.js b/js/Branching/SELECT_m.js index b348723c..c0654546 100644 --- a/js/Branching/SELECT_m.js +++ b/js/Branching/SELECT_m.js @@ -37,13 +37,13 @@ function SELECT_m() { return options; } SELECT_m.prototype.set = function SELECT_m() { - this.typ = inverse(arguments[0]["typ"]) - this.nin = parseFloat(arguments[0]["nin"]) - this.z0 = parseFloat(arguments[0]["z0"]) - this.exprs = arguments[0]["exprs"] this.exprs = this.graphics.exprs; while (true) { - [ok,this.typ,this.nin,this.z0,this.exprs] = scicos_getvalue("Set parameters",["Datatype(1= real double 2=Complex 3=int32 ..)","number of inputs","initial connected input"],list("vec",1,"vec",1,"vec",1),this.exprs); + var ok = true; + this.typ = inverse(arguments[0]["typ"]); + this.nin = parseFloat(arguments[0]["nin"]); + this.z0 = parseFloat(arguments[0]["z0"]); + this.exprs = arguments[0]["exprs"]; if (!ok) { break; } |