Commit 77dd6213 authored by Frank Bergmann's avatar Frank Bergmann

-- calendar should only close when user clicked on a date

parent 75a80a6d
......@@ -770,9 +770,12 @@ Calendar.cellClick = function(el) {
cal.callHandler();
}
// fraber 2012-02-07: Now closing the calendar after clicking into a date
Calendar.removeClass(el, "hilite");
cal.callCloseHandler();
// fraber 2012-02-07: Now closing the calendar after clicking into a date
if (typeof el.navtype == "undefined") {
Calendar.removeClass(el, "hilite");
cal.callCloseHandler();
}
if (closing) {
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment