H there,

I use compilation option to compile cljs to closure modules:

{
                        :id "dev1"
                        :source-paths ["src/cljs"]
                        :compiler {
                                   :output-dir "public/out"
                                   :modules {
                                             :core
                                             {:output-to "public/out/app.js"
                                              :entries #{"jsapp.core"}}
                                             }
                                   :optimizations :simple
                                   :pretty-print true}}


after that, how do I include the js in html page?
I include:  "cljs_base.js" and "app.js"? and add js code
 (javascript-tag "goog.require('jsapp.core');")
 (javascript-tag "jsapp.core.run()")

But it is not working for me? did not execute anything, how to use the closure 
modules?  Thanks!

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/clojurescript.

Reply via email to