[ClojureScript] Re: goog component stylesheets

2016-12-13 Thread Elric Erkose
Thanks. I saw them in a cljs.jar I have. -- 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

[ClojureScript] goog component stylesheets

2016-12-12 Thread Elric Erkose
I was playing with goog.ui.editor.DefaultToolbar.makeToolbar. It doesn't render properly because, among others, I'm missing the button stylesheet. Is anyone aware of a cdn that provides the goog stylesheets? -- Note that posts from new members are moderated - please be patient with your first

[ClojureScript] Re: cljsbuild hangs with foreign-libs using letsencrypt

2016-06-13 Thread Elric Erkose
I downloaded cljs.jar, but I don't know how to specify :dependencies which currently reside in project.clj. The documentation seems to only address compiler options. The build failed because it couldn't locate dependencies. On Monday, June 13, 2016 at 12:46:32 PM UTC-7, Daniel Compton wrote: >

[ClojureScript] compiler options :asset-path :libs

2015-04-09 Thread Elric Erkose
The build process doesn't copy the :libs, when they are local files, to the :asset-path. Maybe I'm doing something wrong, or this would be a useful feature. -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you

Re: [ClojureScript] compiler options :asset-path :libs

2015-04-09 Thread Elric Erkose
Fine, but let me reframe the issue. My (:asset-path app) and (:output-dir dev-resources/public/app) are in sync so that a dev server can serve the application scripts. Unfortunately, the local :libs are not copied to the :output-dir like the source code as part of the compilation process. The

[ClojureScript] Re: Looking for some help with :foreign-libs

2015-03-13 Thread Elric Erkose
Turns out that base.mod was not actually compiled into the js library. -- 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

[ClojureScript] Re: Resources for Getting Started with Clojurescript

2015-03-12 Thread Elric Erkose
This can be helpful http://appletree.or.kr/quick_reference_cards/Others/ClojureScript%20Cheat%20Sheet.pdf -- 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

[ClojureScript] Looking for some help with :foreign-libs

2015-03-12 Thread Elric Erkose
I'm trying to use a foreign library, and not having much luck. Given the foreign-lib below, how would I access base.mod.points.one using clojurescript semantics so that I can print it to the browser console? ```clojurescript (not really) (println point one: base.mod.points.one) ``` The