You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Opera 10/Linux shows javascript errors after executing SlideUp/SlideDown effects in code
... setStyle({bottom: oldInnerBottom})
because
var oldInnerBottom = element.down().getStyle('bottom')
will give result "NaNpx". There must be additional check, e.g.
var oldInnerBottom = element.down().getStyle('bottom');
if (oldInnerBottom == "NaNpx") {
oldInnerBottom = "";
}
The text was updated successfully, but these errors were encountered:
Opera 10/Linux shows javascript errors after executing SlideUp/SlideDown effects in code
... setStyle({bottom: oldInnerBottom})
because
var oldInnerBottom = element.down().getStyle('bottom')
will give result "NaNpx". There must be additional check, e.g.
var oldInnerBottom = element.down().getStyle('bottom');
if (oldInnerBottom == "NaNpx") {
oldInnerBottom = "";
}
The text was updated successfully, but these errors were encountered: