mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-02 00:42:45 +01:00
this fixes #399
This commit is contained in:
parent
665c05c0a3
commit
0501c0712a
@ -501,11 +501,9 @@ 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 ) {
|
||||
if ( target.parentNode ) {
|
||||
target.parentNode.removeChild(target);
|
||||
} else {
|
||||
// https://github.com/gorhill/uBlock/issues/399
|
||||
// Never remove elements from the DOM, just hide them
|
||||
target.style.setProperty('display', 'none', 'important');
|
||||
}
|
||||
} else {
|
||||
target.style.setProperty('visibility', 'hidden', 'important');
|
||||
}
|
||||
@ -570,11 +568,9 @@ var messager = vAPI.messaging.channel('contentscript-end.js');
|
||||
request = requests[i];
|
||||
elem = elements[request.index];
|
||||
if ( collapse ) {
|
||||
if ( elem.parentNode ) {
|
||||
elem.parentNode.removeChild(elem);
|
||||
} else {
|
||||
// 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');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user