Created
April 1, 2015 20:09
-
-
Save alandipert/90732d799b9003c06dce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defelem blink | |
[{:keys [interval :as attr] :or {interval 1000}} kids] | |
(with-let [container (span (dissoc attr :interval) kids)] | |
(with-init! | |
(with-interval interval | |
(.toggle (js/jQuery container)))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment