Skip to content

Commit

Permalink
Merge branch 'master' of github.com:gorhill/uBlock
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Sep 10, 2016
2 parents 921bdfe + b8dc685 commit 0c89f24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/logger-ui-inspector.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
var showdomButton = uDom.nodeFromId('showdom');

// Don't bother if the browser is not modern enough.
if ( typeof Map === undefined || Map.polyfill || typeof WeakMap === undefined ) {
if ( typeof Map === 'undefined' || Map.polyfill || typeof WeakMap === 'undefined' ) {
showdomButton.classList.add('disabled');
return;
}
Expand Down

0 comments on commit 0c89f24

Please sign in to comment.