Releases: matthieua/WOW
Releases · matthieua/WOW
CSP support and bug fixes
This release adds CSP support and fixes an issue where inline styles would be removed by WOW.js when the animation is triggered. From now on, you can (although you probably shouldn't) write something like:
<p class="wow fadeInLeft" style="background: yellow;">
Yellow background!
</p>
…and the yellow background will not be removed when the animation is triggered.
Thanks to @joshmatz for his contributions. He has basically fixed the above issue as a side effect of implementing CSP support.
Bug fixes
Add the ability to turn off WOW on mobile devices
You can now turn off animations on Mobile devices if you think animations don't enhance the user experience.
Simply set mobile: false
when initializing the library and you're good to go.
Bug fixes
This is a bugfix release that fixes WOW not initialising correctly when called during the interactive
document state (e.g. inside jQuery $()
).
Bug fixing
- Improve the Grunt compilation workflow
- Trigger animations on mobile devices. Disabling it was not a good solution. We need to find another workaround.