Monotone-Parent: 4351ae4fc2e351a77cbb70655cd3da5ab2af66c7

Monotone-Revision: a67a6a3249b2b6a4b199678bc6f32cad47300639

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-04-24T17:42:16
This commit is contained in:
Wolfgang Sourdeau
2012-04-24 17:42:16 +00:00
parent d0409c79ca
commit 45a9a751ea
2 changed files with 7 additions and 1 deletions

View File

@@ -1,5 +1,9 @@
2012-04-24 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/SchedulerUI.js (updateCalendarStatus): if
"event" is set, we set its returnValue to true, to avoid a bug
occurring since the use of "clickEventWrapper".
* UI/WebServerResources/HTMLElement.js: get "HTMLCollection"
and "NodeList" classes by class rather than by direct reference.

View File

@@ -2399,7 +2399,9 @@ function updateCalendarStatus(event) {
changeCalendarDisplay();
}
return false;
if (event) {
event.returnValue = true;
}
}
function calendarStatusCallback(http) {