「quit-application」オブザーバーを実装しました。
TestApp.ns(function() {
with (TestApp.Lib) {
//Ci = Components.interfaces;
theApp.ExitObserver = function() {},
// Called on uninstall
theApp.ExitObserver.prototype.observe = function(subject, topic, data){
if (topic == "quit-application"){
alert(" exit ");
}
};
}
});
私のMain.jsファイルでは、このExitObserverを次のように呼び出しました。
theApp.exitObserver = new theApp.ExitObserver();
observerService.addObserver(theApp.exitObserver, "quit-application", false);
ユーザーがブラウザを終了すると、アラートが機能しません。この実装に問題はありますか?