function getWidth() {
var w = $(window).width();
if ($.browser.mozilla) { return w; }
...
The above causes an issue as follows:
1. Using FF, go tohttp://flowplayer.org/tools/expose.html
2. Resize your browser to make the horizontal scroll bar appear
3. Click in the field to invoke the expose functionality
4. Use the horizontal scrollbar to scroll to the right
You'll see that the expose ends abruptly rather than
extending to the edge of the browser window.
Changing the above to the following fixes it for me:
if ($.browser.mozilla) { return $(document).width(); }
Will this cause problems elsewhere?
If no, can it be incorporated in your next release?
Thanks,
Ignac
