Aymeric

Results 48 comments of Aymeric

My current workaround is to force a `blur()` on the a/button once the user has clicked on it : ```html awesome action ```

`v-model` didn't work for me… To make it work I've had to do the below: ```html ```

I created a gist with a TextColor extension file as well as an example with a `.vue` file to see how to use it: https://gist.github.com/Aymkdn/9f993c5cfe8476f718c4fd2fd7bda1f0

In the meantime, I use this workaround: ```javascript if ('-ms-scroll-limit' in document.documentElement.style && '-ms-ime-align' in document.documentElement.style) { // detect it's IE11 window.addEventListener("hashchange", function(event) { var currentPath = window.location.hash.slice(1); if (store.state.route.path...

> Where i have to put the code example above? Anywhere after your Vue script. It's an "independant" code, but you need to make sure `router` and `store` are already...

Thanks for sharing! You missed a `}`, and also I rewrote it to be used with `import ResizeSensor from './ResizeSensor.js'` in my Webpack project: ```js const observing = new Map(),...

@Artuto : I've seen the same problem… I'm contacting Tenda support right now, but did you get any solution so far (other than rebooting the device every few days)?

Typo error in the command. It should be `npm install pm2@latest -g` and not `npm install pm2@lastest -g`

I posted this question on three different places (here, Stackoverflow, and Amazon Alexa forum), but no answer… As a "fix" I did the below in my `server.php`: ```php $server->addGrantType(new OAuth2\GrantType\RefreshToken($storage,...