I've started using wow.js for the first time and I'm having the issue that the animations keep repeating over and over again unless I explicitly specify an iteration count of 1.
I could specify this everywhere, but based on other websites and according to the documentation this should not be necessary..
The website is a custom theme based on Drupal 7 with Bootstrap.
- Bootstrap version = 3.3.5 (most recent)
- Wow version = 1.1.2 (most recent)
- Animate CSS version = most recent
WOW.js is initiated like this:
jQuery(function ($) {
new WOW().init({
iteration: 1
});
}, jQuery);