Skip to content

Instantly share code, notes, and snippets.

@aarkerio
Created April 10, 2020 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aarkerio/cd3c93fef79456e22462960cc5331f85 to your computer and use it in GitHub Desktop.
Save aarkerio/cd3c93fef79456e22462960cc5331f85 to your computer and use it in GitHub Desktop.
ClojureScript: Hidde flash message after 4 seconds
(defn ^:export flash-timeout []
(when-let [flash-msg (gdom/getElement "flash-msg")]
(js/setTimeout #(set! (.-className %) "css-hidden-class") 4000 flash-msg)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment