Skip to content

Instantly share code, notes, and snippets.

@arthuredelstein
Created February 17, 2013 04:21
Show Gist options
  • Save arthuredelstein/4970133 to your computer and use it in GitHub Desktop.
Save arthuredelstein/4970133 to your computer and use it in GitHub Desktop.
useful stuff
(defn clj->js
"Recursively transforms ClojureScript maps into Javascript objects,
other ClojureScript colls into JavaScript arrays, and ClojureScript
keywords into JavaScript strings."
[x]
(cond
(string? x) x
(keyword? x) (name x)
(map? x) (.-strobj (reduce (fn [m [k v]]
(assoc m (clj->js k) (clj->js v))) {} x))
(coll? x) (apply array (map clj->js x))
:else x))
(defn load-script [url]
(let [short-name (last (clojure.string/split url "/"))]
(.getScript js/jQuery url #(println short-name "loaded."))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment