Monotone-Parent: 7636364e216ee5da36da58bf68969d1177723bff

Monotone-Revision: 9e06fb84f43b78de2d753ebe75fda643a62ddcd4

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-02-15T15:32:12
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-02-15 15:32:12 +00:00
parent 494e54e861
commit 0dd16a499f
2 changed files with 5 additions and 2 deletions
+3
View File
@@ -1,5 +1,8 @@
2010-02-15 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/generic.js (getTarget): ensure the
returned target has been initialized with prototype extensions.
* UI/WebServerResources/SchedulerUI.js (gotoToday): set the
selected day to the today date.
+2 -2
View File
@@ -378,9 +378,9 @@ function isHttpStatus204(status) {
function getTarget(event) {
event = event || window.event;
if (event.target)
return event.target; // W3C DOM
return $(event.target); // W3C DOM
else
return event.srcElement; // IE
return $(event.srcElement); // IE
}
function preventDefault(event) {