[ClojureScript] Re: Om: How to add a mixin to an om component ?

2015-01-17 Thread Daniel Szmulewicz
On Saturday, March 15, 2014 at 5:27:40 AM UTC+2, clojur...@gmail.com wrote: Hi Everybody, How can we add a mixin to an om component ? regards A bit late to the party, but here is what I've learnt: 1, Om-tools: https://github.com/Prismatic/om-tools/#mixin-tools 2, Javascript interop:

Re: [ClojureScript] How to connect to node.js repl from cursive ?

2015-01-17 Thread Roger Gilliar
Yes it is a remote REPL. I'm using Weasel now. -- 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

Re: [ClojureScript] Re: Material Design

2015-01-17 Thread Timothy Washington
Great work. It would be nice to be able to use polymer web components with React. It seems to be on the React team's radar https://github.com/facebook/react/issues/2746. But that's something I could really use right now. What I'm currently doing is setting the polymer HTML statically. I then use

[ClojureScript] Re: Material Design

2015-01-17 Thread Taylor Sando
I made a clojars release and put it up on github: https://github.com/taylorSando/om-material-ui -- 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

[ClojureScript] How to connect to node.js repl from cursive ?

2015-01-17 Thread Roger Gilliar
I'm just trying to connect to a node.js repl from cursive. Should this work ? In my case is does not. I just get the message 'Connecting to remote nREPL server...' and than nothing happens. -- Note that posts from new members are moderated - please be patient with your first post. --- You

Re: [ClojureScript] Re: Material Design

2015-01-17 Thread Daniel Kersten
Wow you're awesome! Thanks for this. That's basically what I was planning on doing, so you've saved me a ton of time! Excellent work. On Fri, 16 Jan 2015 21:52 Taylor Sando taylor.sa...@gmail.com wrote: I was playing around with it yesterday and today: There's not a CDN, or pre-built

Re: [ClojureScript] How to connect to node.js repl from cursive ?

2015-01-17 Thread Colin Fleming
How are you starting your REPL? It looks like you're trying to connect to a remote nREPL server, but AFAIK nREPL hasn't been ported to Node yet - normally you'd use something like Weasel to do this. On 17 January 2015 at 22:13, Roger Gilliar roger.gill...@googlemail.com wrote: I'm just trying