1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-29 11:30:20 +12:00

#1013: Firefox support

This commit is contained in:
gorhill 2015-03-26 09:50:07 -04:00
parent ed43097de8
commit dbbd13a8d5

View file

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