Carl Törnqvist

Results 23 comments of Carl Törnqvist

We ran into this issue so any times with [globalgoals.org](https://www.globalgoals.org) where we use the `` tag quite a lot. Actually, looking at the DOM spec for `` it's used within...

@s3ththompson does `--inspect-brk` make sense from a user perspective though? Seeing as it'd break in bankai source code, not in the app I am working on. We probably could inject...

I hear you. When using `bankai start` I usually just resave a file after attaching a debugger to trigger a new build. That wouldn't work with `bankai build`. I'm not...

Ohh, I had forgotten about this. I'll try and resolve the conflicts sometime later this week.

@yoshuawuyts naw, https://github.com/choojs/choo/pull/638 only added lazy stores but never forwarded the new state when reinitializing them on `toString`, the component PR [does this](https://github.com/choojs/choo/pull/639/files#diff-168726dbe96b3ce427e7fedce31bb0bcR214). Also, to prevent leaking state between pages...

Hmm, that's odd. I do ofc get proper file references in in the server rendered response but any error created in the browser will just reference bundle.js in the stack...

It might be an edge case but what I usually do is that I have a wrapper function for all my views which does a try/catch when rendering. If there's...

That's odd. I tried to reproduce the error but couldn't. Have I missed something here? Source: https://glitch.com/edit/#!/cliff-peridot https://cliff-peridot.glitch.me I'm using Bankai here to bundle the app, what are you using?...

It's in `Choo#_prerender`, right here: https://github.com/choojs/choo/blob/master/index.js#L259

Having automatic rendering on navigation I think is very much the responsibility of a framework such as choo. For reacting to updates and routing on the component level, you'd probably...