Javier Villanueva
Javier Villanueva
It looks like [there's a destroy method available](https://github.com/gijsroge/priority-navigation/blob/master/src/priority-nav.js#L568) so you could call that if the screen width goes below a specific size on load/resize.
Did you set `$use-silent-classes` as `true`?
That sounds reasonable, count me in to back it up inuit has helped me so much I have no problem giving back.
Yea but doing something like: ```js const gif = await sharp(animatedGif, { animated: true }) .composite(frames) .gif({ effort: 1 }) .toBuffer(); ``` Didn't make a difference so want sure if...
I'm currently working on doing a yeoman port of this project, I initially wanted to do it for personal projects but I can push it to github when it's finished...
[Here you go](https://github.com/jahvi/generator-htmlemail) Keep in mind this is something I just put together today so it's possible that it has some bugs but feel free to give it a try.
Thanks I just merged your PR, I'm still missing some features from your version like EJS support but feel free to contribute if you can. Initially I wanted to fork...
I managed to make this work by roughly replacing [this line](https://github.com/staempfli/magento2-module-image-resizer/blob/develop/Model/Resizer.php#L294) with the following code: ```php $currentRatio = $imageAdapter->getOriginalWidth() / $imageAdapter->getOriginalHeight(); $targetRatio = $this->width / $this->height; if ($targetRatio > $currentRatio)...
I'm inlining them, the problem is that I don't have that much control over what to load when (because of limitations on the CMS system) so in our case it...
You're meant to do: ```javascript const web3Modal = new Web3Modal() const connection = await web3Modal.connect() const provider = new ethers.providers.Web3Provider(connection) // Subscribe to accounts change connection.on("accountsChanged", (accounts) => { console.log('ACCOUNTS...