mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 14:48:08 +02:00
Fix lint error: extensions/firefox/content/PdfStreamConverter.jsm: line 384, col 63, Expected '===' and instead saw '=='.
This commit is contained in:
parent
8389f1d792
commit
801902c6cc
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ ChromeActions.prototype = {
|
|||
return (!!prefBrowser && prefGfx);
|
||||
},
|
||||
supportsDocumentColors: function() {
|
||||
if (getIntPref('browser.display.document_color_use', 0) == 2 ||
|
||||
if (getIntPref('browser.display.document_color_use', 0) === 2 ||
|
||||
!getBoolPref('browser.display.use_document_colors', true)) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue