From bdf6ded0a6f8c4ddd9d8761beba9029a1e86f354 Mon Sep 17 00:00:00 2001 From: alecpl Date: Thu, 2 Sep 2010 12:30:13 +0000 Subject: - Fix JS error when switching off HTML editor in identity form --- program/js/editor.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'program/js/editor.js') diff --git a/program/js/editor.js b/program/js/editor.js index 938aa82f6..48d8cfa88 100644 --- a/program/js/editor.js +++ b/program/js/editor.js @@ -116,6 +116,7 @@ function rcmail_toggle_editor(select, textAreaId, flagElement) if (flagElement && (flag = rcube_find_object(flagElement))) flag.value = '0'; - rcube_find_object(rcmail.env.composebody).focus(); + if (rcmail.env.composebody) + rcube_find_object(rcmail.env.composebody).focus(); } } -- cgit v1.2.3