removeEventListener( eventname, f ) method

Removes a listener for an AppUpdate event.

See events for available event names.

Syntax

<static> removeEventListener( eventname, f )

Parameters

Name Type Description
eventname string Name of the app update event.
f function Function that was registered.

Example

// Adding the listener
var listener = function(e) {
    console.log("Checking for update");
});
sap.AppUpdate.addEventListener('checking', listener);

// Removing the listener
sap.AppUpdate.removeEventListener('checking', listener);

Source

appupdate.js, line 154.