From 5f0724f8adca9b545b89e71287f8276e86881868 Mon Sep 17 00:00:00 2001 From: alecpl Date: Fri, 25 Jul 2008 18:42:56 +0000 Subject: #1485143: fixed empty body validation errors on IE --- program/js/app.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'program') diff --git a/program/js/app.js b/program/js/app.js index 9682ada3a..20c561a5f 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1889,13 +1889,20 @@ function rcube_webmail() } // check for empty body - if ((((!window.tinyMCE || !tinyMCE.get('compose-body')) && input_message.value == '') - || (window.tinyMCE && tinyMCE.get('compose-body') && tinyMCE.get('compose-body').getContent() == '')) + if ((!window.tinyMCE || !tinyMCE.get('compose-body')) + && input_message.value == '' && !confirm(this.get_label('nobodywarning'))) { input_message.focus(); return false; } + else if (window.tinyMCE && tinyMCE.get('compose-body') + && !tinyMCE.get('compose-body').getContent() + && !confirm(this.get_label('nobodywarning'))) + { + tinyMCE.get('compose-body').focus(); + return false; + } return true; }; -- cgit v1.2.3