See Changelog.

Monotone-Parent: 16d0566b5cbe59d0378166dcfc9fce5ccd83fcb9
Monotone-Revision: 3006b284ea1fe8bea05cc545ceb485ea6b8268f2

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2010-10-14T14:58:06
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle 2010-10-14 14:58:06 +00:00
parent 381879c77a
commit 72da408d64
2 changed files with 5 additions and 2 deletions

View file

@ -20,6 +20,10 @@
2010-10-14 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/MailerUI.js (updateUnseenCount): used the
method charAt to read a string character instead of accessing it
as an array (was not supported by IE).
* UI/WebServerResources/UIxAttendeesEditor.js
(performSearchCallback): improved autocompletion when changing
field before completion has returned.

View file

@ -326,7 +326,6 @@ function onDocumentKeydown(event) {
keyCode = "A".charCodeAt(0);
}
}
if (keyCode == Event.KEY_DELETE ||
keyCode == Event.KEY_BACKSPACE && isMac()) {
deleteSelectedMessages();
@ -854,7 +853,7 @@ function updateUnseenCount(node, count, isDelta) {
for (var i = 0; i < content.length; i++) {
var code = content.charCodeAt(i);
if (code > 47 && code < 58) {
digits += content[i];
digits += content.charAt(i);
}
}
count += parseInt(digits);