Essentially what you are asking for is circular namespace dependencies. These are not supported in Clojure by design. Rich Hickey discussed that on Hacker News in the old days - you might want to google that to find out more about reasons behind it.
Note that if you use a Javascript variable to store something globally, it solves your problem as well having a namespace that only contains one atom and does not depend on other namespaces. You can access that atom from everywhere in your app by requiring said namespace and read/write it as you like. -- 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 http://groups.google.com/group/clojurescript.
