See ChangeLog.

Monotone-Parent: ae97d044860b73b0f26efc2e4ba5c8134dee8299
Monotone-Revision: d03d201f9e10ea4b211b8adbb66f692be8661797

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2012-04-11T14:58:45
maint-2.0.2
Francis Lachapelle 2012-04-11 14:58:45 +00:00
parent 7477978518
commit 262481d6e1
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-04-11 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/ContactsUI.js (onDocumentKeydown): don't
trap keyboard input when inside a textarea.
2012-04-05 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/NSString+Utilities.m (-objectFromJSONString):

View File

@ -1237,7 +1237,7 @@ function configureSelectionButtons() {
function onDocumentKeydown(event) {
var target = Event.element(event);
if (target.tagName != "INPUT") {
if (target.tagName != "INPUT" && target.tagName != "TEXTAREA") {
var keyCode = event.keyCode;
if (!keyCode) {
keyCode = event.charCode;