mirror of https://github.com/zulip/zulip.git
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:
parent
97bd9d5186
commit
ccb38a1e9c
|
@ -271,7 +271,7 @@ exports.start = function (msg_type, opts) {
|
||||||
|
|
||||||
// Show either stream/topic fields or "You and" field.
|
// Show either stream/topic fields or "You and" field.
|
||||||
var focus_area = get_focus_area(msg_type, opts);
|
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);
|
compose_fade.start_compose(msg_type);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue