Skip to content

Instantly share code, notes, and snippets.

View whilo's full-sized avatar

Christian Weilbach whilo

View GitHub Profile
@whilo
whilo / gist:5937694
Created July 5, 2013 22:44
Trying to extend protocol to native javascript DOM type with ClojureScript.
(defprotocol PWindow
(parent [this])
(position [this])
(size [this]))
(extend-protocol PWindow
js/HTMLDivElement
(parent [this] (.-parentNode this))