kmohrf

Results 26 comments of kmohrf

hi jelena, can you provide some more information about how you’re using the mixin (ideally some source code)? does vue-on-click-outside work for you on other platforms? I need some more...

hmm. could you provide me with a link, that reproduces the issue? I’m hesitant to use mouseover because it fires once for every child element. maybe it’s better to use...

Just as a heads up: I’ll try to get back to your issue at the end of the week :)

While looking at the portal-target code I stumbled across the change event. It’s not documented (or at least I didn’t find anything), but I can work with it to solve...

As the original issue poster, I’d still find it useful to have some reactive state to bind to, instead of utilizing the `change` event for it. But then again I...

I’d love to see this. Have you looked into the work of puri.sm, specifically the [squeekboard project](https://source.puri.sm/Librem5/squeekboard)? Unfortunately I won’t be of any help because I neither know C nor...

apart from failing to normalize the api, the current toggle/force polyfill also doesn’t really conform to what everyone else is doing. while I’m not 100% sure that [the spec](https://dom.spec.whatwg.org/#dom-domtokenlist-toggle) defines...

`null` is considered `false` in other implementations. I suppose the usual thruthy/falsy conversion applies except for `undefined`. The spec explicitly mentions `true` and `false` and in the chromium codebase toggle...

Interestingly parenthesis seem to be kind of optional even for iterations with index: `v-for="{ data: renamedData, level }, index in myList"` works from the vue-side of things but trips my...