summaryrefslogtreecommitdiff
path: root/js/Threshold
diff options
context:
space:
mode:
Diffstat (limited to 'js/Threshold')
-rw-r--r--js/Threshold/GENERAL_f.js4
-rw-r--r--js/Threshold/NEGTOPOS_f.js4
-rw-r--r--js/Threshold/POSTONEG_f.js4
-rw-r--r--js/Threshold/ZCROSS_f.js4
4 files changed, 16 insertions, 0 deletions
diff --git a/js/Threshold/GENERAL_f.js b/js/Threshold/GENERAL_f.js
index 40d34677..f89809b1 100644
--- a/js/Threshold/GENERAL_f.js
+++ b/js/Threshold/GENERAL_f.js
@@ -66,4 +66,8 @@ function GENERAL_f() {
}
return new BasicBlock(this.x);
}
+ GENERAL_f.prototype.get_popup_title = function GENERAL_f() {
+ var set_param_popup_title = "Set General Zero-Crossing parameters";
+ return set_param_popup_title;
+ }
}
diff --git a/js/Threshold/NEGTOPOS_f.js b/js/Threshold/NEGTOPOS_f.js
index aa053226..d11b69df 100644
--- a/js/Threshold/NEGTOPOS_f.js
+++ b/js/Threshold/NEGTOPOS_f.js
@@ -24,4 +24,8 @@ function NEGTOPOS_f() {
this.x.model.firing = -1;
return new BasicBlock(this.x);
}
+ NEGTOPOS_f.prototype.get_popup_title = function NEGTOPOS_f() {
+ var set_param_popup_title = "Set parameters";
+ return set_param_popup_title;
+ }
}
diff --git a/js/Threshold/POSTONEG_f.js b/js/Threshold/POSTONEG_f.js
index 7847c1a1..dcd8a98a 100644
--- a/js/Threshold/POSTONEG_f.js
+++ b/js/Threshold/POSTONEG_f.js
@@ -25,4 +25,8 @@ function POSTONEG_f() {
this.x.model.firing = [-1];
return new BasicBlock(this.x);
}
+ POSTONEG_f.prototype.get_popup_title = function POSTONEG_f() {
+ var set_param_popup_title = "Set parameters";
+ return set_param_popup_title;
+ }
}
diff --git a/js/Threshold/ZCROSS_f.js b/js/Threshold/ZCROSS_f.js
index 28cddce5..c93d0b90 100644
--- a/js/Threshold/ZCROSS_f.js
+++ b/js/Threshold/ZCROSS_f.js
@@ -55,4 +55,8 @@ function ZCROSS_f() {
}
return new BasicBlock(this.x);
}
+ ZCROSS_f.prototype.get_popup_title = function ZCROSS_f() {
+ var set_param_popup_title = "Set Zero-Crossing parameters";
+ return set_param_popup_title;
+ }
}