From 7408555ad16b5d0e380d1d90eb62e64eb14987f1 Mon Sep 17 00:00:00 2001 From: RblSb Date: Fri, 1 May 2020 10:10:33 +0300 Subject: Minor changes --- src/client/Buttons.hx | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'src/client/Buttons.hx') 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 = cast document.querySelectorAll(".dropdown-menu"); for (menu in menus) menu.style.display = ""; -- cgit v1.2.3