diff options
Diffstat (limited to 'js/MatrixOp/RICC.js')
-rw-r--r-- | js/MatrixOp/RICC.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/js/MatrixOp/RICC.js b/js/MatrixOp/RICC.js index a57f1a41..9684b4a5 100644 --- a/js/MatrixOp/RICC.js +++ b/js/MatrixOp/RICC.js @@ -29,6 +29,11 @@ function RICC() { return this.x; } RICC.prototype.get = function RICC() { + var label = this.graphics.exprs; + if (size(label,"*")==14) { + label[9-1] = []; + } + this.set_param_popup_title = "Set RICC Block"; var options = { tpe:["Type (1=Cont 2=Disc)",this.tpe], mod:["Model(1=Schr 2=sign(cont) inv(disc))",this.mod], @@ -66,7 +71,6 @@ function RICC() { return new BasicBlock(this.x); } RICC.prototype.get_popup_title = function RICC() { - var set_param_popup_title = "Set RICC Block"; - return set_param_popup_title; + return this.set_param_popup_title; } } |