From a80e08fbf32bed02bf585ae20054c208c4296a72 Mon Sep 17 00:00:00 2001 From: Zev Benjamin Date: Fri, 19 Oct 2012 17:04:28 -0400 Subject: [PATCH] Fix typo It was preventing the right text area being focused on huddles (imported from commit 8ebe457b4e5bce723e3afd9f396f97eeb0e97c46) --- zephyr/static/js/compose.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephyr/static/js/compose.js b/zephyr/static/js/compose.js index 1ae089ae12..c9acc89eb1 100644 --- a/zephyr/static/js/compose.js +++ b/zephyr/static/js/compose.js @@ -35,7 +35,7 @@ exports.start = function (msg_type, opts) { if (msg_type === 'stream') { exports.show('stream', $("#" + (focus_area || 'stream'))); } else { - exports.show('personal', $("#" + (focus_area || 'huddle_recipients'))); + exports.show('personal', $("#" + (focus_area || 'huddle_recipient'))); } hotkeys.set_compose();