Cory Forsyth
Cory Forsyth
@robclancy Thanks for the report — can you explain a bit more about what you mean by performance issues? Are the cells failing to render altogether, or does the table...
@bedrosenator When you have a chance, can you try upgrading to `2.0.0-beta.8` (or a [newer release](https://github.com/Addepar/ember-table/releases) if applicable) and see if that fixes your issue?
I made a PR (#117) to add some info to the webpack config that would have helped me. If it would be useful, I'd be happy to make a follow-up...
@xtuc Thanks! Added a PR for the wasm-pack-plugin: https://github.com/wasm-tool/wasm-pack-plugin/pull/54
(This warning seems benign, but I wanted to add an issue in case anyone else runs into it and is curious about the source of that warning.)
@mixonic This code should be guarding against it: https://github.com/bustlelabs/mobiledoc-kit/blob/master/src/js/editor/mutation-handler.js#L97 and https://github.com/bustlelabs/mobiledoc-kit/blob/master/src/js/models/render-node.js#L84-L89. But it still happens. Here's an example where we simulate a mutation by appending a span to one of...
This has ended up being more complicated than initially expected because the editor's position exists in an ambiguous state when the editor is blank (aka `!editor.post.hasContent`). A `Position` requires a...
Oh, actually the nested is mostly just aimed at allowed arbitrarily nested _lists_ (I'll update the description above). I'm not sure if I see use cases for nested sections of...
> I can imagine a future where rendering happens in two stages: first validate/customize/transform a mobiledoc into a generic intermediary tree, and then do the final projection into the target...
@rlivsey I'm going to add some more guard code to keep the editor's element focused and in sync w/ the selection. But did you were you able to create a...