1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 15:32:28 +02:00
This commit is contained in:
gorhill 2015-02-24 20:10:10 -05:00
parent 265d18edc1
commit 6318d24f40
2 changed files with 22 additions and 18 deletions

View File

@ -574,7 +574,8 @@ var messager = vAPI.messaging.channel('contentscript-end.js');
var req = filterRequests[details.id];
delete filterRequests[details.id];
if ( details.collapse === undefined ) {
// https://github.com/gorhill/uBlock/issues/869
if ( details.collapse !== true ) {
return;
}
@ -582,13 +583,10 @@ var messager = vAPI.messaging.channel('contentscript-end.js');
// If `!important` is not there, going back using history will
// likely cause the hidden element to re-appear.
if ( details.collapse ) {
// https://github.com/gorhill/uBlock/issues/399
// Never remove elements from the DOM, just hide them
req.target.style.setProperty('display', 'none', 'important');
} else {
req.target.style.setProperty('visibility', 'hidden', 'important');
}
// https://github.com/gorhill/uBlock/issues/399
// Never remove elements from the DOM, just hide them
req.target.style.setProperty('display', 'none', 'important');
messager.send({
what: 'injectedSelectors',
@ -672,21 +670,22 @@ var messager = vAPI.messaging.channel('contentscript-end.js');
if ( typeof details !== 'object' || details === null ) {
return;
}
var requests = details.requests;
var collapse = details.collapse;
// https://github.com/gorhill/uBlock/issues/869
if ( collapse !== true ) {
return;
}
var requests = details.requests;
var selectors = [];
var i = requests.length;
var request, elem;
var request;
while ( i-- ) {
request = requests[i];
elem = elements[request.index];
if ( collapse ) {
// https://github.com/gorhill/uBlock/issues/399
// Never remove elements from the DOM, just hide them
elem.style.setProperty('display', 'none', 'important');
} else {
elem.style.setProperty('visibility', 'hidden', 'important');
}
// https://github.com/gorhill/uBlock/issues/399
// Never remove elements from the DOM, just hide them
elements[request.index].style.setProperty('display', 'none', 'important');
selectors.push(request.tagName + '[' + srcProps[request.tagName] + '="' + request.url + '"]');
}
if ( selectors.length !== 0 ) {

View File

@ -254,6 +254,11 @@ var matchWhitelistDirective = function(url, hostname, directive) {
// Post-change
switch ( name ) {
case 'collapseBlocked':
if ( value === false ) {
this.cosmeticFilteringEngine.removeFromSelectorCache('*', 'net');
}
break;
case 'contextMenuEnabled':
this.contextMenu.toggle(value);
break;