Fix bug with underscore _.each method in IE9.

This commit is contained in:
Julia Radzhabova 2016-10-27 15:42:02 +03:00
parent 67cdfb5592
commit 218385d386

View file

@ -125,7 +125,7 @@ define([
if (active && active.length > 0) { if (active && active.length > 0) {
_.each(active, function(menu) { _.each(active, function(menu) {
menu.hide(); if (menu) menu.hide();
}); });
return true; return true;
} }