From 185fc6a3727634508aeed42ae7b7712b6d0b35e6 Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Mon, 1 May 2023 01:10:26 +0530 Subject: [PATCH] UI bug fix --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index dd1faa7..8055887 100644 --- a/index.html +++ b/index.html @@ -1107,7 +1107,7 @@ } function buttonLoader(id, show) { - const button = typeof id === 'string' ? getRef(id) : id; + const button = typeof id === 'string' ? document.getElementById(id) : id; button.disabled = show; const animOptions = { duration: 200,