New to clojurescript and working on the "Modern CLJS" tutorial here .
He instructs to insert domina by adding it to project.clj:
:dependencies [[org.clojure/clojure "1.4.0"]
[compojure "1.1.5"]
[domina "1.0.0"]]
And then use it in your script, specifying it in the form ns
(ns cljstut.login
(:use [domina :only [by-id value]]))
However, when I actually run this in a browser, I see the following in the console log.
goog.require could not find: domina
I think I missed some kind of declaration somewhere? But like new, the whole assembly process is pretty opaque. Any troubleshooting tips are greatly appreciated.
source
share