.height() function reloads flash elements
Hey all,
In development of my site, I find that when I call .height() on a
specific element, the flash elements on the site reload, once I take
that one height call, everything returns to normal.
Here's the code:
if ($(window).height() + $(window).scrollTop() < e.pageY+16 + $
('#login_helper').height())
{
$('#login_helper').css({top: e.pageY - $
('#login_helper').height()});
}
The first height() call on #login_helper is at fault. The
window.height() call works fine.
Hopefully it's a bug that can be fixed!