Ilya Medzhidov
Ilya Medzhidov
Any update on this?
Absolutely must have feature! I need to see screenshots of a game next to description tab!
I tested it again, duration is 100+- ms, but anyway this is a mess
Maybe add requestIdleCallback to dispatchChange, to make it sync?
At the moment I've done it, but I think it's a terrible solution: src/components/block/index.ts ```typescript public dispatchChange(): void { window.requestIdleCallback(() => { setTimeout(() => { this.didMutated(); }, 100) }, {...
@neSpecc you brought requestIdleCallback to this project, how can we fix this bug, have any ideas?
@neSpecc Yes, if we manually emit "dispatch change" from block tool, it will not working for 200 ms after block init, and dispatch will ignored if you will not try...
After the block is initialized, I have about 20 blocks with different content. However, in one of them, I change its content immediately after the DOM is added to the...
I maybe will provide later in a free time, but now i can tell this: no, not in time of rendering, but right after it. If you will use dispatchChange...
I want to note that I verify the data only after the file component is mounted. This is a Vue component that is created, placed inside a created ``, and...