James Wragg

Results 12 comments of James Wragg

Just hit the same issue & found this work-around: https://github.com/vuejs/vue/issues/10485#issuecomment-528729861 hope it helps. The underlying issue looks like its a bug in the Vue template compiler itself: https://github.com/vuejs/vue/issues/11059

The instructions on `vue-custom-element` may help you get your styles within ShadowDOM https://github.com/karol-f/vue-custom-element#shadowdom-example

(Vue v2.1.8)

I just copied this example from the readme into a At.vue file in my project: ``` import At from 'vue-at' export default { components: { At }, data () {...

With hindsight, maybe pass the click event & options to beforeSend() and allow beforeSend to cancel the click/request. Use case: I provide a loading indicator (spinner) on a clicked pjax...

Hi, thanks for picking this up. Unfortunately I don't think my change is really the proper solution. To explain: I need access to the clicked node in the beforeSend (all?)...

You can do something along the lines of this: ``` $this = $('#tags'); $this.tagit({ placeholderText: $this.attr('placeholder'), afterTagAdded: function(event, ui) { showHidePlaceholder($(this)); }, afterTagRemoved: function(event, ui) { showHidePlaceholder($(this)); } }); function...

I thought I hit the same issue recently while using Crumb in `restful: true` mode. Then realised I wasn't passing the csrf token header in the request & all was...

I wonder if validating modifiers via a Joi, zod or typebox schema would be the better approach?

Tracked the issue to this [`clampDimensionsPreservingAspectRatio`](https://github.com/unjs/ipx/blob/main/src/handlers/handlers.ts#L96-L104) fn call. Sharp seems to handle this correctly now, as works as expected when those lines are commented out. I'd question wether this manual...