Disable hotkeys when preparing a huddle after clicking on a username.

(imported from commit a27ed2734dc3e8ca1a9a1aba8f672c10a6a6fb92)
This commit is contained in:
Luke Faraone 2012-09-28 19:55:28 -04:00
parent 036d25b6bd
commit 160744788a
1 changed files with 3 additions and 0 deletions

View File

@ -28,6 +28,9 @@ function register_huddle_onclick(zephyr_row, sender) {
// onclick handler. We don't want to trigger the messagebox // onclick handler. We don't want to trigger the messagebox
// handler. // handler.
e.stopPropagation(); e.stopPropagation();
// switch to the replybox hotkey handler
keydown_handler = process_key_in_input;
}); });
} }