Re: [ANN] A post on CLJS DOM manipulation libraries

2013-12-15 Thread Timothy Pratley
Very illuminating - thank you! This is a topic that needed explaining :) -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patie

Re: [ClojureScript] Re: [ANN] A post on CLJS DOM manipulation libraries

2013-12-12 Thread Dave Della Costa
Hi Creighton, I've updated the post with a bit expanding on the Enfocus section, including your suggestions. Thanks again for your great feedback-- DD (2013/12/12 23:00), Creighton Kirkendall wrote: > Nice job! > > I noticed a few small things on the Enfocus section that I would tweak but > n

Re: [ANN] A post on CLJS DOM manipulation libraries

2013-12-12 Thread Dave Della Costa
Hi Walter, thanks very much for the fix, good catch--I've updated the github repo and the post to reflect this change. Thanks! DD (2013/12/13 6:26), Walter van der Laan wrote: > Hi Dave, > > Thanks for the overview. > > I found one error. When running the Google Clojure example on its own > th

Re: [ANN] A post on CLJS DOM manipulation libraries

2013-12-12 Thread Walter van der Laan
Hi Dave, Thanks for the overview. I found one error. When running the Google Clojure example on its own this expression gives an error: (first (query "#menu ul")) This is because 'first' depends on the protocols implemented in domina.events. This expression will fix the error: (aget (query "#m

Re: [ClojureScript] Re: [ANN] A post on CLJS DOM manipulation libraries

2013-12-12 Thread Dave Della Costa
Creighton, this is really excellent feedback and exactly what I was hoping for. I am relatively new to Enfocus and had a feeling I could have written that code in a more idiomatic way. I'll edit the piece to incorporate your suggestions ASAP. Many thanks! DD (2013/12/12 23:00), Creighton Kirke

Re: [ClojureScript] Re: [ANN] A post on CLJS DOM manipulation libraries

2013-12-12 Thread Creighton Kirkendall
Nice job! I noticed a few small things on the Enfocus section that I would tweak but nothing that really makes all that big a difference. I listed a few below. You don't need to reference js/document when doing a single selector and you don't need the [] around the selector. (ef/at js/docume

Re: [ClojureScript] Re: [ANN] A post on CLJS DOM manipulation libraries

2013-12-12 Thread Dave Della Costa
Apologies...I messed something up temporarily fixing the issue Luke Morton found. Is it still broken for you? (2013/12/12 22:33), Creighton Kirkendall wrote: > I seem to be getting a 404 on the link now. > -- -- You received this message because you are subscribed to the Google Groups "Clojur

Re: [ClojureScript] [ANN] A post on CLJS DOM manipulation libraries

2013-12-12 Thread Dave Della Costa
Most definitely a mistake--good catch Luke! I've updated it with something jayq-specific. Thank you! DD (2013/12/12 19:52), Luke Morton wrote: > Informative, nice work Dave! Perhaps a small mistake: looks like you're > using `dommy/text` in your jayq example. > > > On 12 December 2013 07:05,

Re: [ANN] A post on CLJS DOM manipulation libraries

2013-12-12 Thread Creighton Kirkendall
I seem to be getting a 404 on the link now. -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To

Re: [ClojureScript] [ANN] A post on CLJS DOM manipulation libraries

2013-12-12 Thread Luke Morton
Informative, nice work Dave! Perhaps a small mistake: looks like you're using `dommy/text` in your jayq example. On 12 December 2013 07:05, Dave Della Costa wrote: > Hi folks, > > Albeit a little later than I'd hoped, I've written a post giving a > high-level overview of the DOM manipulation/Ev

[ANN] A post on CLJS DOM manipulation libraries

2013-12-11 Thread Dave Della Costa
Hi folks, Albeit a little later than I'd hoped, I've written a post giving a high-level overview of the DOM manipulation/Event handling libraries available in ClojureScript at the present time: http://davedellacosta.com/cljs-dom-survey It's aimed at beginners in ClojureScript, for the most part,