From eb7c8e0cd42d4afe02be3adda2e94b6b0dfdaa00 Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Tue, 26 Jun 2018 14:59:47 +0530 Subject: add return value from scicos_getvalue to global vars --- js/Sources/IN_f.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'js/Sources/IN_f.js') diff --git a/js/Sources/IN_f.js b/js/Sources/IN_f.js index d6ea593f..5c6512de 100644 --- a/js/Sources/IN_f.js +++ b/js/Sources/IN_f.js @@ -13,7 +13,7 @@ function IN_f() { exprs = sci2exp(prt); gr_i = []; this.x = standard_define([1,1],model,exprs,gr_i); - return new BasicBlock(this.x); + return new ExplicitInBlock(this.x); } IN_f.prototype.details = function IN_f() { return this.x; @@ -59,6 +59,6 @@ function IN_f() { break; } } - return new BasicBlock(this.x); + return new ExplicitInBlock(this.x); } } -- cgit