We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce:
Start a browser-repl via cljsbuild (tried with Firefox and Chromium), and evaluate the following expressions in order of appearance:
(ns mynamespace (:use [jayq.core :only [$ append css inner]]) (:require [crate.core :as cr] [crate.binding :as cb]) (:use-macros [crate.def-macros :only [defpartial]]))
(def zomg (atom "hey"))
(defpartial t [a] [:p a])
(append ($ :body) (cr/html [:div (cb/bound zomg t)]))
(swap! zomg str " blah") (swap! zomg str " woo") (swap! zomg str " cool")
Result:
Using lein-cljsbuild 0.2.1 and
:dependencies [[org.clojure/clojure "1.4.0"] [crate "0.2.0-alpha4"] [jayq "0.1.0-alpha4"]]
The text was updated successfully, but these errors were encountered:
Some say, crate create Om compatible node abstraction. Well, I'm a beginner, I just quoting someone..
crate
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce:
Start a browser-repl via cljsbuild (tried with Firefox and Chromium), and evaluate the following expressions in order of appearance:
(ns mynamespace
(:use [jayq.core :only [$ append css inner]])
(:require [crate.core :as cr]
[crate.binding :as cb])
(:use-macros [crate.def-macros :only [defpartial]]))
(def zomg (atom "hey"))
(defpartial t [a]
[:p a])
(append ($ :body) (cr/html [:div (cb/bound zomg t)]))
(swap! zomg str " blah")
(swap! zomg str " woo")
(swap! zomg str " cool")
Result:
Using lein-cljsbuild 0.2.1 and
:dependencies [[org.clojure/clojure "1.4.0"]
[crate "0.2.0-alpha4"]
[jayq "0.1.0-alpha4"]]
The text was updated successfully, but these errors were encountered: