mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 17:18:54 +01:00
Removed behaviour of jscalendar, which removed drop-down boxes even if the calendar was not in popup mode
This commit is contained in:
parent
00bbad90c5
commit
57e54c8c27
@ -1326,7 +1326,11 @@ Calendar.prototype.show = function () {
|
|||||||
Calendar.addEvent(document, "keypress", Calendar._keyEvent);
|
Calendar.addEvent(document, "keypress", Calendar._keyEvent);
|
||||||
Calendar.addEvent(document, "mousedown", Calendar._checkCalendar);
|
Calendar.addEvent(document, "mousedown", Calendar._checkCalendar);
|
||||||
}
|
}
|
||||||
this.hideShowCovered();
|
|
||||||
|
if (this.isPopup && this.is_ie)
|
||||||
|
{
|
||||||
|
this.hideShowCovered();
|
||||||
|
}
|
||||||
|
|
||||||
if (Calendar.is_ie5_mac && !this.isPopup)
|
if (Calendar.is_ie5_mac && !this.isPopup)
|
||||||
this.refresh(); // else the layout is broken
|
this.refresh(); // else the layout is broken
|
||||||
@ -1344,7 +1348,11 @@ Calendar.prototype.hide = function () {
|
|||||||
}
|
}
|
||||||
this.element.style.display = "none";
|
this.element.style.display = "none";
|
||||||
this.hidden = true;
|
this.hidden = true;
|
||||||
this.hideShowCovered();
|
|
||||||
|
if (this.isPopup && this.is_ie)
|
||||||
|
{
|
||||||
|
this.hideShowCovered();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user