Jake Verbaten

Results 307 comments of Jake Verbaten
trafficstars

@tounano https://github.com/Matt-Esch/vdom/pull/11/files We are working to get attributes into mercury :) Let's move this issue into mercury or virtual-dom instead of here, since hyperscript is a similar but not quite...

@tounano closing & re-opening with a link / reference works fine.

@tounano if you want to help with development come hang out in #virtualdom on IRC :)

I ran into this myself today and would love for `decodeEventLog` to be fully typed just like `decodeFunctionResult` That would help so much in working with indexing blockchain events.

`require('request')` -> `require('http')` -> `XHR shim` is very indirect. Something like `require('xhr') -> uses XMLHttpRequest directly` is better for frontend stuff. We would still need to hook into other things...

@feross `var request = typeof window !== 'undefined' ? require('xhr') : (require)('request')` Someone was going to write a single module you could require that did that, `xhr` is a subset...

@feross https://github.com/Raynos/xhr its a subset of `request` though.

cc @btford zone.js looks like a start to async-listener for browsers :D Lets do this!

@btford indexeddb, html5 file system, webrtc, requestAnimationFrame, setImmediate, EventSource, history api, postMessage, webworker, websockets, Webgl. Some of them may be supported indirectly through EventTarget

@othiym23 I think there is no way to intercept `document.body.onclick = foo` in IE6/7. IE8 should be possible with `Object.defineProperty` working on host objects.