summaryrefslogtreecommitdiff
path: root/js/NonLinear/INVBLK.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/NonLinear/INVBLK.js')
-rw-r--r--js/NonLinear/INVBLK.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/js/NonLinear/INVBLK.js b/js/NonLinear/INVBLK.js
index d5d559f3..2d359c7b 100644
--- a/js/NonLinear/INVBLK.js
+++ b/js/NonLinear/INVBLK.js
@@ -10,13 +10,14 @@ function INVBLK() {
model.dep_ut = [true,false];
exprs = " ";
gr_i = [];
- x = standard_define([2,2],model,exprs,gr_i);
+ this.x = standard_define([2,2],model,exprs,gr_i);
}
INVBLK.prototype.details = function INVBLK() {
+ return this.x;
}
INVBLK.prototype.get = function INVBLK() {
}
INVBLK.prototype.set = function INVBLK() {
- x = arg1;
+ this.x = arg1;
}
}