Browse Source

Firefox: fixed content scripts?

pull/2/head
Deathamns 10 years ago
committed by gorhill
parent
commit
a6acb50892
  1. 6
      platform/firefox/vapi-client.js

6
platform/firefox/vapi-client.js

@ -149,14 +149,16 @@ vAPI.messaging = {
/******************************************************************************/
var toggleListener = function({type, persisted}) {
if ( !persisted || !vAPI.messaging.connector ) {
if ( !vAPI.messaging.connector ) {
return;
}
if ( type === 'pagehide' ) {
removeMessageListener();
return;
}
else {
if ( persisted ) {
addMessageListener(vAPI.messaging.connector);
}
};

Loading…
Cancel
Save