diff options
Diffstat (limited to 'js/Sources/Counter.js')
-rw-r--r-- | js/Sources/Counter.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/js/Sources/Counter.js b/js/Sources/Counter.js index 998036ca..63e64b2e 100644 --- a/js/Sources/Counter.js +++ b/js/Sources/Counter.js @@ -62,4 +62,12 @@ function Counter() { Counter.prototype.get_popup_title = function Counter() { return this.set_param_popup_title; } + Counter.prototype.importset = function Counter() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.minim = ary[0]; + this.maxim = ary[1]; + this.rule = ary[2]; + } + Counter.prototype.getContainer = function Counter() { return new BasicBlock(this.x); } } |