Usage
JavaScript
nebula.emptyCaches()
Parameters
This function does not accept any parameters. Is this incorrect?
Source File
Located in /assets/js/modules/optimization.js on line 360.
No Hooks
This function does not have any filters or actions available. Request one?
JavaScript
nebula.emptyCaches = async function(){
if ( 'caches' in window ){
const names = await caches.keys();
for ( let name of names ){
await nebula.yield();
await caches.delete(name);
}
}
};
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).
JavaScript
For non-module import functions:
nebula.emptyCaches = function(){
//Write your own code here, leave it blank, or return false.
}
For dynamically imported module function overrides:
jQuery(window).on('load', function(){
nebula.emptyCaches = 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.emptyCaches === 'function' ){
nebula.emptyCaches = function(){
//Write your own code here, leave it blank, or return false.
}
}
});