mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-11 09:51:23 +00:00
Fix for bug #539.
See ChangeLog Monotone-Parent: 1a92d62c7bce360bb60b9ff6a4b682d804803349 Monotone-Revision: f3830c65328146810871090fdfd037458b8d87af Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2010-04-02T17:33:29 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2010-04-02 Francis Lachapelle <flachapelle@inverse.ca>
|
||||
|
||||
* UI/WebServerResources/SchedulerUI.js (onClickableCellsDblClick):
|
||||
hack to ignore double-click in the scrollbar in the month view &
|
||||
fix for Firefox.
|
||||
|
||||
2010-03-31 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* Tools/sogo-slapd-sockd.m, Tools/SOGoSockDOperation.m,
|
||||
|
||||
@@ -1100,7 +1100,8 @@ function scrollDayView(scrollEvent) {
|
||||
|
||||
function onClickableCellsDblClick(event) {
|
||||
var target = getTarget(event);
|
||||
if (target.hasClassName("dayHeader") || this.clientHeight >= this.scrollHeight) {
|
||||
// Hack to ignore double-click in the scrollbar
|
||||
if (target.hasClassName("dayHeader") || (this.scrollHeight - this.clientHeight <= 1)) {
|
||||
newEventFromWidget(this, 'event');
|
||||
Event.stop(event);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user