Skip to content

Instantly share code, notes, and snippets.

@lbradstreet
Created June 23, 2014 13:40
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 lbradstreet/50157264378fb4b1ecb0 to your computer and use it in GitHub Desktop.
Save lbradstreet/50157264378fb4b1ecb0 to your computer and use it in GitHub Desktop.
(defn popover
"wrapper for the ReactBootstrap/Popover component"
[{:keys [content
title
data]} owner opts]
(reify
om/IRender
(render [this]
(ReactBootstrap/OverlayTrigger #js {:trigger "hover"
:placement "top"
:overlay (ReactBootstrap/Popover #js {:title title} data)}
content))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment