Christian Johansen
Christian Johansen
Changing the content of an element from an array of children to some `innerHTML` content currently produces the following exception: ``` Uncaught DOMException: Node.removeChild: The node to be removed is...
It seems that Snabbdom removes `null` from the list of children prior to patching the DOM. This causes Snabbdom to consider elements that are not logically "the same element" to...
Related t #971. I'm not sure what the intended behavior for text nodes is, but I had hoped this would work: ```js var el = document.createElement('div'); document.body.appendChild(el); // Works as...
I'm trying to patch in a text node, using a document fragment: ```js var patch = snabbdom.init([ snabbdom.propsModule ]); var el = document.createElement('div'); document.body.appendChild(el); var fragment = document.createDocumentFragment(); fragment.appendChild(document.createTextNode("Text")); var...
I recently saw your first talk showcasing figwheel, and I really liked the favicon trick you employed on running tests with it. So I found a gist of yours and...
It is currently quite easy to misspell `(is (= "string1" "string2"))` as `(is "string1" "string2")` because of `(is form msg)` (where `form` can be any value) - see #64. Maybe...
Kaocha currently captures output and only prints it when tests fail. I like the idea behind this, but the current implementation makes it a little too easy to forget stray...
Figwheel's validation prevents the use of some newer language levels, this adds them in.