Browse Source

#1013: Firefox support

pull/2/head
gorhill 10 years ago
parent
commit
dbbd13a8d5
  1. 13
      platform/firefox/vapi-background.js

13
platform/firefox/vapi-background.js

@ -1138,13 +1138,18 @@ var httpObserver = {
return true;
}
/*if ( result.redirectUrl ) {
channel.redirectionLimit = 1;
if ( result.redirectUrl ) {
if ( type === 'main_frame' ) {
channel.cancel(this.ABORT);
vAPI.tabs.open({ tabId: details.tabId, url: result.redirectUrl });
return true;
}
/*channel.redirectionLimit = 1;
channel.redirectTo(
Services.io.newURI(result.redirectUrl, null, null)
);
return true;
}*/
return true;*/
}
return false;
},

Loading…
Cancel
Save