Skip to content

Instantly share code, notes, and snippets.

@wilkes
Created August 30, 2011 14:11
Show Gist options
  • Save wilkes/1180974 to your computer and use it in GitHub Desktop.
Save wilkes/1180974 to your computer and use it in GitHub Desktop.
(defn custom-button [parent text]
(let [container (html/el "span")
button (goog.ui.CustomButton. text)]
(dom/append parent container)
(.render button container)
{:element container :component button}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment