Kris Selden
Kris Selden
This will be fixed by 3.0
the `var fileScript = new vm.Script(source, { filename: filePath });` does not need be redone every time, it doesn't hold context state. The thing we are caching this.sandbox actually does...
It would make reload() cheaper, but for some reason I had it in my head we were doing a new one for different sessions.
It's because it is using a path that goes through setAttribute which then uses the CSS parser, if it did style prop of the element that would work. This though...
@shaunc I'm doing some refactoring to make `{{ember-collection}}` a composition of lower level components, I do hope to provide this kind of info in the lower level components for building...
@raytiley there is an abstraction for diffing in ember I think we should leverage for updating cell order to data order
This would be better done with a combo of ember-collections and a truly fixed grid that doesn't wrap. Basically a spreadsheet view I'm assuming. The problem with doing it with...
@lifeart can we observe `observe({type: 'largest-contentful-paint', buffered: true})` when using the navigation timing marks? also, you shouldn't need to use both requestAnimationFrame and requestIdleCallback, requestIdleCallback is supposed to come in...
We have a todo to add web-vitals metrics, so waiting for them maybe a good idea.
Glimmer 2 caches the parent element, we need an API to tell glimmer it is reparented, for now you need to wrap dynamic content in a static element