James

Results 13 comments of James
trafficstars

Oh that's awesome -- I rarely see the projects tab used! In my case, I've created a canvas (in the Photoshop sense) for users to manipulate elements within, but the...

If you could provide me a minimal repo that reproduces the issue, I should be able to more accurately diagnose the issue.

https://github.com/tserkov/vue-scroll-reveal#nuxt

Sorry for the delay all! I've just pushed [[email protected]](https://github.com/tserkov/vue-scroll-reveal/tree/v2), which is intended for Vue/Nuxt 3 (1.x.x only supports Vue/Nuxt 2). The issue here was harder to debug than I'd imagined,...

> It is interesting that this depends on the filename. In the nuxt 3 docs they even make an example with a kebab case plugin name: `plugins/vue-gtag.client.js` (see the docs...

`loadScript(...)` returns a promise, and is rejected when the injected `` emits an _error_ or _abort_ event, so a `.catch(...)` on the returned promise should allow you to handle the...

After some research, this looks like this is a DOM limitation. The `onerror` event does not fire for network events, and there are no other error-type events that fire. The...

Great suggestion! Not much trouble to actually get it added as well, since I already break out each message type into a single handler. I'll add it to the roadmap.

Thanks, I've [just published it](https://www.npmjs.com/package/vue-scroll-reveal?activeTab=versions)! 🙈

My instinct is a sort of race condition. Basically, the component has to remotely load Twitch's player.js using vue-plugin-load-script. This plugin injects a ``, and prevents future injections by detecting...