Skip to content

Releases: matthieua/WOW

CSP support and bug fixes

07 May 12:11
Compare
Choose a tag to compare

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

05 Mar 08:29
Compare
Choose a tag to compare

This release fixes a regression where the plugin would not be initialised when new WOW(…).init() is called before the document is ready.

See #52. Thanks @tjwudi for the report.

Add the ability to turn off WOW on mobile devices

03 Mar 02:43
Compare
Choose a tag to compare

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

12 Feb 07:31
Compare
Choose a tag to compare

This is a bugfix release that fixes WOW not initialising correctly when called during the interactive document state (e.g. inside jQuery $()).

Bug fixing

29 Jan 08:33
Compare
Choose a tag to compare
  • Improve the Grunt compilation workflow
  • Trigger animations on mobile devices. Disabling it was not a good solution. We need to find another workaround.