wagich

Results 7 comments of wagich

+1 that would be really useful

Not the OP, but I just used it to write metadata for some 80 PDFs and it worked pretty much flawlessly. :smile: One thing that I needed to change: it...

Just got bitten by this too: I think the cleanest approach is to just change line 497 to: `var holder = this.container.find('.scrollbar-pane').children().clone(true);` creating an in-memory copy before cleaning up the...

You are right of course: you need to use `contents()` not `children()`, but I still think the approach is valid. Since I'm using the same lookup as you, I'd also...

I've had a similar experience migrating my projects – it was managable, but coupled with the paradigm shift SASS namespacing forced on the styles quite complicated and error-prone. Regarding simplifying...

For anyone who encounters this same error (as I did): This seems to occur when the `Ajv` object was made into a reactive proxy by Vue 3. Probably because it...

I stumbled over the same problem, it seems that the fix should be to assign the editor's `appContext` to the constructed vNode before rendering. I have this working locally [with...