diff options
author | alecpl <alec@alec.pl> | 2011-07-01 20:06:46 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-07-01 20:06:46 +0000 |
commit | 02e079f9170539a639a9f42248829faeb7c17ae3 (patch) | |
tree | 7d64b5dab9037b78a89e127fa2a12010c62e9f68 | |
parent | f187ee98385ecc5b9cf2c6f0473a89351ae1ba4f (diff) |
- Fix adding signatures (#1487965)
-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 efd1cc776..c96c3ebee 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -2867,7 +2867,7 @@ function rcube_webmail() this.set_caret_pos(input_message, this.env.top_posting ? 0 : $(input_message).val().length); // add signature according to selected identity // if we have HTML editor, signature is added in callback - if (input_from.attr('type') == 'select-one' && $("input[name='_draft_saveid']").val() == '') { + if (input_from.prop('type') == 'select-one' && $("input[name='_draft_saveid']").val() == '') { this.change_identity(input_from[0]); } } @@ -2906,7 +2906,7 @@ function rcube_webmail() input_message = $("[name='_message']"); // check sender (if have no identities) - if (input_from.attr('type') == 'text' && !rcube_check_email(input_from.val(), true)) { + if (input_from.prop('type') == 'text' && !rcube_check_email(input_from.val(), true)) { alert(this.get_label('nosenderwarning')); input_from.focus(); return false; |