[ClojureScript] Re: re-frame pattern with external javascript

2015-03-13 Thread Sven Richter
Awesome, thank you, it was :component-did-mount I was looking for. It's easy to forget that a component in reagent has access to lifecycle methods too, happens much to often to me. Best Regards, Sven Am Freitag, 13. März 2015 13:23:48 UTC+1 schrieb Mike Thompson: On Friday, March 13, 2015 at

[ClojureScript] Re: re-frame pattern with external javascript

2015-03-13 Thread Mike Thompson
On Friday, March 13, 2015 at 10:10:55 PM UTC+11, Sven Richter wrote: Hi, I am trying the re-frame pattern with resumable.js. Resumable.js needs one to execute a function on an existing dom element like this: r.assignBrowse(document.getElementById('browseButton')); Now, the problem is,