Skip to content

Instantly share code, notes, and snippets.

@rads
Created April 11, 2013 07:13
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 rads/4b568fb452fd66bc199f to your computer and use it in GitHub Desktop.
Save rads/4b568fb452fd66bc199f to your computer and use it in GitHub Desktop.
(defn setup! [search-client]
(dommy/append! (sel1 "body") (templates/layout))
(let [*search-el* (sel1 "#search")
*results-el* (sel1 "#results")]
(dommy/listen! *search-el* :keyup #(submit-search! search-client))
(dommy/listen! [*results-el* :a] :click play-song!)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment