Folcon

Results 76 comments of Folcon

So I've been looking into this area and I've been wondering what happened to the discussion here? Have people solved the problem somewhere else? In which case please tell me...

@JulianBirch Not sure if you're still interesting in capturing incremental downloads from a streaming http response? I've gotten a version working with `goog.net.XhrIo` or is that becoming deprecated entirely? Not...

@JulianBirch That's great, I've only got it working in ClojureScript land =)... What kind of tests are you looking for? I've been treating my side pretty shabbily as the system...

So it is and it isn't :)... That sounds great, however I'm not certain that the `download-progress-handler` would work as described? At least if it's based on `goog.net.EventType.DOWNLOAD_PROGRESS`, it might...

PS: Here's the blocks link I mentioned which gives an example of this: https://bl.ocks.org/mbostock/4062045

Ok, final thing for today: Changing the below code ``` (force "link" (.. js/d3 forceLink (id #(.id %)) (distance 120) (strength 1))) ``` to ``` (force "link" (.. js/d3 forceLink...

@gadfly361 Thanks for this, I haven't vanished off the face of the earth ;)... Just been a bit busy and I won't be able to take a proper look over...

So I've finally had a chance to experiment with this again. I'm putting together a more complete re-frame example, with things like on-click and drag/drop. I'm not sure if this...

I've tried a couple of variants such as: ```clojure (defn d3-mouse-pos [] ((.. js/d3 -mouse) (-> js/d3 .-event .-currentTarget))) (defn display-graph-inner [graph-sub] (let [graph-name (gensym "display-graph") width 960 height 600...

Ok, I think that works =)... ```clojure (defn d3-mouse-pos [] ((.. js/d3 -mouse) (-> js/d3 .-event .-currentTarget))) (defn display-graph-inner [graph-sub] (let [graph-name (gensym "display-graph") width 960 height 600 resolution 20...