Jake Verbaten

Results 307 comments of Jake Verbaten
trafficstars

@jisaacks can we get these changes merged into master behind opt in config flags. It makes it easier to try these changes without having to manually install a branch of...

Would love to test this. Is there an easy way to install `Git Gutter Staged` from sublime text package control ?

https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement The `hyperscript` library sets DOM properties, not HTML attributes, try `minLength` and `maxLength`

svg elements should live in a `` node.

We landed svg support in `virtual-dom` today ( https://github.com/Matt-Esch/virtual-dom/commit/be1d7923a805d2cf70bbeb2e041d980ddb8aa899 ) Maybe take inspiration from that implementation.

@DTrejo you don't get the react dom diffing performance. The way hyperscript & observable work together will cause a large amount of unneccessary dom mutations and reflows. you would need...

that's not quite how it works. `h('div#id', { a: 'b' })` is equivalent to ``` js var div = document.createElement('div') div.setAttribute('id', 'id') div['a'] = b ``` There appears to be...

@dominictarr I mean any attributes on a DOM element. anything that is not a property. The most common example I can think of is that all the aria- accessibility attributes...

`mercury` is a lot heavier & more opinionated then `hyperscript`. `hyperscript` still has good use cases. Especially in cases where you don't want a virtual DOM.

Yes, if your UI is static or mostly static hyperscript will serve you well. if your app is dynamic mercury does better. Also integrating hyperscript into an existing application is...