aboutsummaryrefslogtreecommitdiffstats
path: root/src/client/Buttons.hx
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/Buttons.hx')
-rw-r--r--src/client/Buttons.hx22
1 files changed, 12 insertions, 10 deletions
diff --git a/src/client/Buttons.hx b/src/client/Buttons.hx
index d4533bf..a04b444 100644
--- a/src/client/Buttons.hx
+++ b/src/client/Buttons.hx
@@ -249,16 +249,6 @@ class Buttons {
exitBtn.blur();
hideMenus();
}
- final synchThresholdBtn = ge("#synchThresholdBtn");
- synchThresholdBtn.onclick = e -> {
- var secs = main.synchThreshold + 1;
- if (secs > 5) secs = 1;
- main.setSynchThreshold(secs);
- updateSynchThresholdBtn(main);
- synchThresholdBtn.blur();
- }
- final secs = main.synchThreshold;
- synchThresholdBtn.innerText += ': ${secs}s';
final swapLayoutBtn = ge("#swapLayoutBtn");
swapLayoutBtn.onclick = e -> {
@@ -295,6 +285,18 @@ class Buttons {
}
}
+ public static function initTextButtons(main:Main):Void {
+ final synchThresholdBtn = ge("#synchThresholdBtn");
+ synchThresholdBtn.onclick = e -> {
+ var secs = main.synchThreshold + 1;
+ if (secs > 5) secs = 1;
+ main.setSynchThreshold(secs);
+ updateSynchThresholdBtn(main);
+ synchThresholdBtn.blur();
+ }
+ updateSynchThresholdBtn(main);
+ }
+
static function hideMenus():Void {
final menus:Array<Element> = cast document.querySelectorAll(".dropdown-menu");
for (menu in menus) menu.style.display = "";
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage