See Changelog.

Monotone-Parent: d7aebce05726f8e7de4e1e755b2143939a487c9e
Monotone-Revision: a3ff389774d4c793b5970d4691cb8738d9f83e70

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-01-05T22:11:35
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle 2011-01-05 22:11:35 +00:00
parent 342010bd72
commit ddc8577b1d
2 changed files with 5 additions and 0 deletions

View file

@ -1,5 +1,9 @@
2011-01-05 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/SOGoAutoCompletion.js (onKeydown): added
support for the delete key (confirmed value was not reset and
therefore used as the field value when loosing focus).
* UI/WebServerResources/generic.js (showConfirmDialog): buttons
callbacks must be updated when retrieving dialog box from cache.

View file

@ -53,6 +53,7 @@ var SOGoAutoCompletionInterface = {
}
else if (event.keyCode == 0
|| event.keyCode == Event.KEY_BACKSPACE
|| event.keyCode == Event.KEY_DELETE
|| event.keyCode == 32 // Space
|| event.keyCode > 47) {
this.confirmedValue = null;