Fix explorer with old version of browsers
This commit is contained in:
parent
95f5de8e4d
commit
b400c79d42
@ -403,15 +403,15 @@ jQuery(document).ready(function($)
|
|||||||
res = true;
|
res = true;
|
||||||
|
|
||||||
// check URL parameters and compute result
|
// check URL parameters and compute result
|
||||||
if (paramYear != "") res &&= checkYear(i.year);
|
if (paramYear != "") res = res && checkYear(i.year);
|
||||||
if (paramMonth != "") res &&= checkMonth(i.month);
|
if (paramMonth != "") res = res && checkMonth(i.month);
|
||||||
if (paramDimension != "") res &&= checkDimension(i.dimension);
|
if (paramDimension != "") res = res && checkDimension(i.dimension);
|
||||||
if (paramGenre != "") res &&= checkGenre(i.genre);
|
if (paramGenre != "") res = res && checkGenre(i.genre);
|
||||||
if (paramTheme != "") res &&= checkTheme(i.theme);
|
if (paramTheme != "") res = res && checkTheme(i.theme);
|
||||||
if (paramPlace != "") res &&= checkPlace(i.place);
|
if (paramPlace != "") res = res && checkPlace(i.place);
|
||||||
if (paramTag != "") res &&= checkTag(i.tags);
|
if (paramTag != "") res = res && checkTag(i.tags);
|
||||||
if (paramPhoto != "") res &&= checkPhoto(i.photo);
|
if (paramPhoto != "") res = res && checkPhoto(i.photo);
|
||||||
if (paramHelp != "") res &&= checkHelp(i.help);
|
if (paramHelp != "") res = res && checkHelp(i.help);
|
||||||
|
|
||||||
if (!res)
|
if (!res)
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
Reference in New Issue
Block a user