Justin Lee

Results 8 comments of Justin Lee

For future reference, if this happens, note that it looks pretty easy to make progress handlers work. GCL just checks for an onprogress property in the xhr object and sets...

I was trying to track down why my refs weren't working and came across this issue. I want to share what I've learned in case it helps anybody, but take...

Metadata would eventually allow another feature I'd love to see: custom ordering of functions and variables. Right now we use alphabetical order, which, if you think about it, is really...

I just hit this too. @r0man I have to say I'm confused why you think this is the best default behavior. If cljs-http gets bad json from the server, what...

I'm probably missing something, but right now, if you hit this bug, the entire state machine vaporizes and it never returns. So whatever you do, it surely has to be...

I believe the problem is here: ```clojure (defn wrap-json-response "Decode application/json responses." [client] (fn [request] (-> #(decode-body % util/json-decode "application/json" (:request-method request)) (async/map [(client request)])))) ``` The issue is that...

I think my two goals are (1) provide a programatic way to deal with errors and (2) make it debuggable. Dealing with 2 is fairly easy: as long as you...

Sorry you are right of course. At a minimum people will need the status code.