diff options
Diffstat (limited to 'js/Linear/DELAY_f.js')
-rw-r--r-- | js/Linear/DELAY_f.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/js/Linear/DELAY_f.js b/js/Linear/DELAY_f.js index ee4b8dae..b2534994 100644 --- a/js/Linear/DELAY_f.js +++ b/js/Linear/DELAY_f.js @@ -159,4 +159,11 @@ function DELAY_f() { DELAY_f.prototype.get_popup_title = function DELAY_f() { return this.set_param_popup_title; } + DELAY_f.prototype.importset = function DELAY_f() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.dt = ary[0]; + this.z0 = ary[1]; + } + DELAY_f.prototype.getContainer = function DELAY_f() { return new BasicBlock(this.x); } } |