opera.extension.ondisconnect
Description:
This event listener is invoked when an injected script, popup or preferences environment is destroyed and communication is disabled. The event's source is a messagePort to the disconnecting environment, used only for comparative purposes. The port itself may be closed. The following function will execute when a preferences page is opened, for example.
Example:
//
// The background process ('/background.js').
//
opera.extension.ondisconnect = function(event) {
var connected = false;
};
This article is licensed under a Creative Commons Attribution 3.0 Unported license.
Comments
No new comments accepted.