matiyin

Results 17 comments of matiyin

> @jalalianmohsen89 awesome! Thanks for the working workaround! For those who are using swiper as a directive, here is a bit modified workaround: > > ``` > > > >...

I'm doing a project at the moment with Vue, WPML and WP Rest API. I use this method to support translation files (json instead of .mo files) and locale switching:...

I have the same issue in Chrome latest, breaking my mobile version (scroll doesn't work at all), but I see it's being worked on. Thanks a lot!

I got it to work simply by using a plugin: **/plugins/vue-headroom.client.js** `import Vue from 'vue'` `import vueHeadroom from 'vue-headroom'` `Vue.use(vueHeadroom) ` **nuxt.config.js** ` plugins: [` `'~/plugins/vue-headroom.client.js' // hide on scroll...

Same issue using "core-js": "^3.3.2" "vue-draggable-nested-tree": "^2.2.18"

For me it works. First time I tried actually not, it overwrite the default language fields when I saved a translation. However, I tried a second time and it works...

Safari is a bitch as usual. I'm doing a project with ar.js, displaying a video inside a marker. I've experimented with many setups, but using the three.js version instead of...

> @matiyin would you be able to share how did you achieve scaling video to marker size ? sure, scaling the video to the marker is easy with ARToolkit and...

Hi, yes that's the more annoying part, as iOS doesn't allow videos (with sound) to play without a user interaction, a click to play. So you will see a black...

``` function pause() { if (this.playPromise) { this.playPromise.then(_ => { this.$refs.video.pause() }) .catch(error => { console.log('error pausing video:', error) }); } } ``` `async function play() { const player =...