mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-06-24 03:14:17 +00:00
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:
@@ -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.
|
||||
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user