mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-23 10:52:43 +01:00
this fixes #1124
This commit is contained in:
parent
2989388a87
commit
4e7736bc10
@ -29,6 +29,15 @@
|
||||
|
||||
/******************************************************************************/
|
||||
|
||||
// https://github.com/gorhill/uBlock/issues/1124
|
||||
// Looks like `contentType` is on track to be standardized:
|
||||
// https://dom.spec.whatwg.org/#concept-document-content-type
|
||||
if ( (document.contentType || '').startsWith('image/') ) {
|
||||
return;
|
||||
}
|
||||
|
||||
/******************************************************************************/
|
||||
|
||||
var vAPI = self.vAPI = self.vAPI || {};
|
||||
var chrome = self.chrome;
|
||||
|
||||
@ -60,7 +69,7 @@ vAPI.shutdown = (function() {
|
||||
var exec = function() {
|
||||
//console.debug('Shutting down...');
|
||||
var job;
|
||||
while ( job = jobs.pop() ) {
|
||||
while ( (job = jobs.pop()) ) {
|
||||
job();
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user