diff options
author | alecpl <alec@alec.pl> | 2010-08-03 08:49:13 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-08-03 08:49:13 +0000 |
commit | c321e2fb24c84187d6015525ebaded826cd8f8d4 (patch) | |
tree | 009dd5041bbf4f83ceb5496d12fc6ec6f87adc0a /program/js/app.js | |
parent | b4d109042982d3f7bb7bb09ad5fdab730cec5a5a (diff) |
- Fix ESC key doesn't close folder name edition field in Google Chrome
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js index 53eeb71c9..c4966eee0 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -4045,7 +4045,7 @@ function rcube_webmail() reg = new RegExp('['+RegExp.escape(this.env.delimiter)+']?[^'+RegExp.escape(this.env.delimiter)+']+$'); this.name_input.__parent = this.env.subscriptionrows[id][0].replace(reg, ''); - this.name_input.onkeypress = function(e){ rcmail.name_input_keypress(e); }; + this.name_input.onkeydown = function(e){ rcmail.name_input_keydown(e); }; row.cells[0].replaceChild(this.name_input, row.cells[0].firstChild); this.edit_folder = id; @@ -4068,7 +4068,7 @@ function rcube_webmail() }; // handler for keyboard events on the input field - this.name_input_keypress = function(e) + this.name_input_keydown = function(e) { var key = rcube_event.get_keycode(e); |