From 352623792d2b9400510599c487540b1e763a7d3c Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Wed, 29 Aug 2018 10:48:12 +0530 Subject: add the common code to get method also type is a function get the popup title from the value set in the get method --- js/MatrixOp/CUMSUM.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'js/MatrixOp/CUMSUM.js') diff --git a/js/MatrixOp/CUMSUM.js b/js/MatrixOp/CUMSUM.js index d0cc813c..e4c3f6ea 100644 --- a/js/MatrixOp/CUMSUM.js +++ b/js/MatrixOp/CUMSUM.js @@ -29,6 +29,11 @@ function CUMSUM() { return this.x; } CUMSUM.prototype.get = function CUMSUM() { + var label = this.graphics.exprs; + if (size(label,"*")==14) { + label[9-1] = []; + } + this.set_param_popup_title = "Set CUMSUM block parameters"; var options = { typ:["Datatype(1=real double 2=Complex)",this.typ], decomptyp:["Sum along (0=the first non singleton dimension 1=Rows 2=Columns)",this.decomptyp], @@ -103,7 +108,6 @@ function CUMSUM() { return new BasicBlock(this.x); } CUMSUM.prototype.get_popup_title = function CUMSUM() { - var set_param_popup_title = "Set CUMSUM block parameters"; - return set_param_popup_title; + return this.set_param_popup_title; } } -- cgit