Daniel X Moore

Results 96 comments of Daniel X Moore

It may be possible to wrap the items in a `documentFragment`. This should be fine for the external uses as `document.body.appendChild` will work fine with that, but we may need...

One challenge with using fragments in that they behave a little strangely when being added to the DOM. ```javascript f = document.createDocumentFragment() f.appendChild(document.createElement('p')) f.childElementCount // => 1 document.body.appendChild(f) f.childElementCount //...

Try this one: ```javascript tpl = t(`Fragment @a li @b li @c`) ```

I've been thinking... There may be a way to do this by instead of tracking the parent node, to track the first child in a fragment and the number of...

Thanks cluncan and metaperl for the additional details. We're currently working on a much better "Getting Started" example and tutorial section in addition to some sample apps. We'll update this...

Here's the beginning of the spec, more to come: https://gist.github.com/STRd6/ac81a3afb5a8d00e02a6

https://jadelet.glitch.me/ is another good place, more coming soon:tm:

A related sub-issue could be to start using `let` in loop comprehensions: ```coffee for a in [1..b] console.log a ``` ```javascript for (let i = 1, a = i, ref...

@Inve1951 Good point, it should end up like: ```javascript var a; for (let i = a = 1, ref = b; (1

@usrtax What is `coffee_plus`?