summaryrefslogtreecommitdiff
path: root/js/Misc/DEADBAND.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/Misc/DEADBAND.js')
-rw-r--r--js/Misc/DEADBAND.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/js/Misc/DEADBAND.js b/js/Misc/DEADBAND.js
index f5e17f05..581e8621 100644
--- a/js/Misc/DEADBAND.js
+++ b/js/Misc/DEADBAND.js
@@ -22,6 +22,8 @@ function DEADBAND() {
return this.x;
}
DEADBAND.prototype.get = function DEADBAND() {
+ var exprs = this.graphics.exprs;
+ this.set_param_popup_title = "Set Deadband parameters";
var options = {
maxp:["End of dead band",this.maxp],
minp:["Start of dead band",this.minp],
@@ -62,7 +64,6 @@ function DEADBAND() {
return new BasicBlock(this.x);
}
DEADBAND.prototype.get_popup_title = function DEADBAND() {
- var set_param_popup_title = "Set Deadband parameters";
- return set_param_popup_title;
+ return this.set_param_popup_title;
}
}