Usage
This function runs automatically, so it is not called manually. Is this incorrect?
Source File
Located in /assets/js/modules/utilities.js on line 293.
No Hooks
This function does not have any filters or actions available. Request one?
JavaScript
nebula.animationTriggers = function(){ //On document ready jQuery('.ready').each(function(){ nebula.loadAnimate(jQuery(this)); }); //On window load nebula.dom.window.on('load', function(){ jQuery('.load').each(function(){ nebula.loadAnimate(jQuery(this)); }); }); //On click nebula.dom.document.on('click', '.click, [nebula-click]', function(){ let animationClass = jQuery(this).attr('nebula-click') || ''; nebula.animate(jQuery(this), animationClass); }); };
Override
To override or disable this JavaScript function, simply redeclare it with the exact same function name.
JavaScript
nebula.animationTriggers = function(){ //Write your own code here, leave it blank, or return false. }