diff options
Diffstat (limited to 'js/Branching/FROM.js')
-rw-r--r-- | js/Branching/FROM.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/Branching/FROM.js b/js/Branching/FROM.js index 716fc793..2fd6c169 100644 --- a/js/Branching/FROM.js +++ b/js/Branching/FROM.js @@ -30,17 +30,17 @@ function FROM() { exprs = graphics.exprs; model = arg1.model; while (true) { - [ok,tag,exprs] = scicos_getvalue("Set parameters",["Tag"],list("str",-1),exprs); + [ok,this.tag,exprs] = scicos_getvalue("Set parameters",["Tag"],list("str",-1),exprs); if (!ok) { break; } if (ok) { - if (model.opar!=list(tag)) { + if (model.opar!=list(this.tag)) { needcompile = 4; y = needcompile; } graphics.exprs = exprs; - model.opar = list(tag); + model.opar = list(this.tag); this.x.model = model; this.x.graphics = graphics; break; |