20
how to turn events on and off in Javascript
(lemmy.ml)
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Follow the wormhole through a path of communities !webdev@programming.dev
For your own sanity, please use a formatter for your IDE. This will also help when others (and you) read the code, as indentation is a convenience for understanding program flow. From what I see:
enable
anddisable
functions are never called for this portion of codeenabled
variable, if so it never passes scopes between thehandleClick
andanimation
methodsawait
forinvoke
orupdateCurrentBox
, causing all the code after either to immediately run. As a result,enabled
is neverfalse
, since it just instantly flips back totrue
. I'm not sure what libraryinvoke
is from, but there should be a callback or the function returns aPromise
which can beawait
ed.