Ticket #2731: mythweb-opera.patch

File mythweb-opera.patch, 829 bytes (added by Rob Smith, 17 years ago)
  • js/mouseovers.js

     
    227227        var y = pos.y + parseInt(get_element(popup.id).offsetHeight);
    228228    // Get some window information so we can make sure the box doesn't extend off the edge of the screen
    229229        var window_width = 0, window_height = 0, scroll_left = 0, scroll_top = 0;
    230         if (document.documentElement.clientWidth) {
     230        if (document.documentElement.clientWidth && document.documentElement.clientHeight < document.body.clientHeight) {
    231231            window_width  = document.documentElement.clientWidth;
    232232            window_height = document.documentElement.clientHeight;
    233233            scroll_left   = document.documentElement.scrollLeft;