Code standards updates

This commit is contained in:
Pascal Deklerck 2018-06-13 21:03:19 +02:00
parent a11103a3a7
commit b54d1b708a

View file

@ -24,14 +24,17 @@ function Addon_registerHook( type, hookfnstr )
* @brief Call all registered hooks of a certain type, i.e. at the same point of the JavaScript code execution * @brief Call all registered hooks of a certain type, i.e. at the same point of the JavaScript code execution
* @param typeOfHook string indicating which type of hooks to be called among the registered hooks * @param typeOfHook string indicating which type of hooks to be called among the registered hooks
*/ */
function callAddonHooks( typeOfHook ) { function callAddonHooks(typeOfHook)
{
if (typeof addon_hooks !== 'undefined') { if (typeof addon_hooks !== 'undefined') {
var myTypeOfHooks = addon_hooks[typeOfHook]; var myTypeOfHooks = addon_hooks[typeOfHook];
if (typeof myTypeOfHooks !== 'undefined') { if (typeof myTypeOfHooks !== 'undefined') {
for (addon_hook_idx = 0; addon_hook_idx < myTypeOfHooks.length; addon_hook_idx++) { for (addon_hook_idx = 0; addon_hook_idx < myTypeOfHooks.length; addon_hook_idx++) {
var hookfnstr = myTypeOfHooks[addon_hook_idx]; var hookfnstr = myTypeOfHooks[addon_hook_idx];
var hookfn = window[hookfnstr]; var hookfn = window[hookfnstr];
if (typeof hookfn === "function") hookfn(); if (typeof hookfn === "function") {
hookfn();
}
} }
} }
} }