diff --git a/static/src/js/mail_recovery.js b/static/src/js/mail_recovery.js index c36235e..7a0bfaf 100644 --- a/static/src/js/mail_recovery.js +++ b/static/src/js/mail_recovery.js @@ -5,7 +5,7 @@ openerp.mail_recovery = function (session) { bind_events: function () { var self = this; this.$('textarea').on('focus', self.on_focus_textarea); - this.$('textarea').on('keypress', self.on_keypress_textarea); + this.$('textarea').on('keyup', self.on_keyup_textarea); this._super(); }, on_focus_textarea: function(event) { @@ -14,7 +14,7 @@ openerp.mail_recovery = function (session) { $input.val(window.localStorage['message_storage']); } }, - on_keypress_textarea: function(event) { + on_keyup_textarea: function(event) { window.localStorage['message_storage'] = $(event.target).val(); }, on_message_post: function (event) {