compose: Fix missing opts argument to show_box.

This fixes a regression in the recent compose.get_focus_area
refactoring that I did.
This commit is contained in:
Tim Abbott 2017-03-22 16:31:22 -07:00
parent 97bd9d5186
commit ccb38a1e9c
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ exports.start = function (msg_type, opts) {
// Show either stream/topic fields or "You and" field.
var focus_area = get_focus_area(msg_type, opts);
show_box(msg_type, $("#" + focus_area));
show_box(msg_type, $("#" + focus_area), opts);
compose_fade.start_compose(msg_type);