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/Misc/SUPER_f.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'js/Misc/SUPER_f.js') diff --git a/js/Misc/SUPER_f.js b/js/Misc/SUPER_f.js index 658ee514..96598262 100644 --- a/js/Misc/SUPER_f.js +++ b/js/Misc/SUPER_f.js @@ -20,7 +20,7 @@ function SUPER_f() { model.dep_ut = [false,false]; gr_i = []; this.x = standard_define([2,2],model,[],gr_i); - return new BasicBlock(this.x); + return new SuperBlock(this.x); } SUPER_f.prototype.details = function SUPER_f() { return this.x; @@ -29,6 +29,6 @@ function SUPER_f() { } SUPER_f.prototype.set = function SUPER_f() { xcos(arg1.model.rpar); - return new BasicBlock(this.x); + return new SuperBlock(this.x); } } -- cgit