Fix mouseout

i18n
Vitaliy Filippov 2017-04-04 14:58:37 +03:00
parent 4ae73720a8
commit f7321af1b1
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ onDomReady(function()
addListener(s, 'mouseout', function(e) {
e = e || window.event;
var t = e.relatedTarget || e.toElement;
if (t == s || t.parentNode == s)
if (t == s || t && t.parentNode == s)
return;
s.style.width = lim+'px';
s.style.maxWidth = '';