Skip to content

Instantly share code, notes, and snippets.

@werenall
Created May 3, 2019 10:09
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 werenall/59f20217071c1f3050c045e4805feafb to your computer and use it in GitHub Desktop.
Save werenall/59f20217071c1f3050c045e4805feafb to your computer and use it in GitHub Desktop.
Atom-based tooltip
(let [display-tooltip? (r/atom false)]
(fn []
[:div.tooltip-controller
[:button
{:on-click #(swap! display-tooltip? not)}
"spawn tooltip"]
(when @display-tooltip?
[:div.tooltip.tooltip--bottom
[:button {:on-click #(reset! display-tooltip? false)} "x"]
[:p "Hello there!"]])]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment