Closed (outdated)
Project:
Greybox
Version:
6.x-1.0
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Oct 2009 at 20:25 UTC
Updated:
12 Apr 2020 at 16:26 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
cloud-dupe2 commentedI'm using firefox (in linux) and having the same problem. Most of buttons/links disable.
It seems that greybox doesn't close/exit properly and still exist in background. When I'm scrolling the mouse up & down, I can see such a blurry box (rarely can see). Everything will be fine after refreshing the page.
Comment #2
tuffnatty commentedsubscribing
Comment #3
blaiz commentedI have this problem too. Actually, after closing the window, all the links that would be under the window, just don't work, unless I scroll and they appear at the top or bottom of the browser window. It becomes also hard to scroll.
Tested with Google Chrome 5+ and Internet Explorer 8.
I found a quickfix to this problem. In the js folder, in greybox.js, at line 71, replace this:
$("#GB_window").animate({ height: 0, width: 0, opacity: 0 }, 350);by this:
$("#GB_window").hide();and then no more problem (but the fading out animation goes away but personally I don't like those animations, that would be great to be able to customize it in the configuration GUI).
Comment #4
kompressaur commentedlovely. thanks very much blaiz.
Comment #5
blaiz commentedComment #6
xog commentedThank you very much!!
$("#GB_window").hide();
It works for me too.
Comment #7
tacituseu commentedAttached patch should fix this problem without removing animation.
Comment #8
tacituseu commentedThere still was a race condition left after previous patch, sometimes
$("#GB_window").animate()would finish after$("#GB_overlay").fadeOut()callback got called, and in effect nullify its$("#GB_window").hide();call.This one should fix it for good.
Comment #9
avpadernoI am closing this issue, since it's for a Drupal version no longer supported.