Yanick Champoux
Yanick Champoux
Yup, looks like you found it. This plugin was written with client-side code in mind, not server-side. If you replace the ` if ( window.addEventListener ) {` by ` if...
I'm not sure I understand that last question...?
I'll have to try to create a basic nuxt project using this package to see what can be done. But yeah, `svg-pan-zoom` is aimed squarely at the client-side. Maybe I...
Of course, there's the solution to entierely port `svg-pan-zoom` in vue. Shouldn't be too bad, but that'd require some serious tuits... :-P
The package was created way before Vue 3. These days I'm using more Svelte than Vue, so updating this repo is, alas, low priority. But if you want to have...
`onZoom` should be passed a function that will be called when zooming happen. I've created an example at https://github.com/yanick/vue-svg-pan-zoom/blob/zoom/src/zoom.stories.vue
Ah, I have at least one problem with your example: ``` :onZoom="onZoom()" ``` that should be ``` :onZoom="onZoom" ``` I.e., you need to pass the function callback, and what you...
Can you try one of the failing smokers with the code in the branch at `https://github.com/yanick/Vim-X/tree/no-x`? I've changed the call to vim in the tests to disable all X11 stuff,...
I think https://github.com/PerlDancer/Dancer2/blob/main/t/request_upload.t#L137 provides the answer: apparently Windows can't remove file/link while open due to deadlock. In any case, we're getting the upload files from Plack, so there is not...
#325 is merged. This one should be rebasable without any conflict.