Use strict equalities in make.js, external/* and extensions/*

This commit is contained in:
Tim van der Meij 2014-08-01 22:26:27 +02:00
parent 00eea3ddb9
commit c29faaa22d
4 changed files with 4 additions and 4 deletions

View file

@ -36,7 +36,7 @@ function isPdfDownloadable(details) {
}
// Display the PDF viewer regardless of the Content-Disposition header
// if the file is displayed in the main frame.
if (details.type == 'main_frame') {
if (details.type === 'main_frame') {
return false;
}
var cdHeader = (details.responseHeaders &&