quote:
How do I close the DIV-style ones, though, they stay open in Safari
This is because of an (still) existing bug in the PopupWindow.js file.
Search the following lines in the PopupWindow_isClicked(e) function:
else if (this.use_gebi && e) {
var t = e.originalTarget;
while (t.parentNode != null) {
if (t.id==this.divName) {
return true;
}
t = t.parentNode;
}
return false;
}
And replace these with:
else if (this.use_gebi && e) {
var t = e.target;
if (t.parentNode == 3) { // Defeat Safari Bug
if (t.id==this.divName) {
return true;
}
t = t.parentNode;
}
return false;
}
my regards,
mr_alexander