Usage
This function runs automatically, so it is not called manually. Is this incorrect?
Additional Notes
An ID is required so HTML5 videos can be properly identified by Nebula and child themes.
Source File
Located in /assets/js/modules/video.js on line 30.
No Hooks
This function does not have any filters or actions available. Request one?nebula.html5VideoTracking = function(){ jQuery('video').each(function(){ let id = jQuery(this).attr('id'); //An ID is required so HTML5 videos can be properly identified by Nebula and child themes if ( typeof nebula.videos[id] === 'object' ){ //If this video is already being tracked ignore it return false; } nebula.addHTML5VideoPlayer(id, jQuery(this)); }); };
Override
To override or disable this JavaScript function, simply redeclare it with the exact same function name. Remember: Some functionality is conditionally loaded via dynamic imports, so if your function is not overriding properly, try listening for a DOM event (described below).
For non-module import functions:
nebula.HTML5VideoTracking = function(){ //Write your own code here, leave it blank, or return false. }
For dynamically imported module function overrides:
jQuery(window).on('load', function(){ nebula.HTML5VideoTracking = function(){ //Write your own code here, leave it blank, or return false. } });
Custom Nebula DOM events do also exist, so you could also try the following if the Window Load listener does not work:
jQuery(document).on('nebula_module_loaded', function(module){ //Note that the module variable is also available to know which module specifically was imported if ( typeof nebula.HTML5VideoTracking === 'function' ){ nebula.HTML5VideoTracking = function(){ //Write your own code here, leave it blank, or return false. } } });