From 02e079f9170539a639a9f42248829faeb7c17ae3 Mon Sep 17 00:00:00 2001 From: alecpl Date: Fri, 1 Jul 2011 20:06:46 +0000 Subject: - Fix adding signatures (#1487965) --- program/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'program/js') 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; -- cgit v1.2.3