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 26.
No Hooks
This function does not have any filters or actions available. Request one?
JavaScript
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.
JavaScript
nebula.HTML5VideoTracking = function(){ //Write your own code here, leave it blank, or return false. }