minor: Avoid ui_util.focus_on() call.

The helper is unnecessary at this point and obscures
greps for selectors.  We completely eliminate it in
the next commit.
This commit is contained in:
Steve Howell 2018-12-22 15:19:52 +00:00 committed by showell
parent a3000940f7
commit ca22302763
1 changed files with 1 additions and 1 deletions

View File

@ -529,7 +529,7 @@ exports.edit_last_sent_message = function () {
// Finally do the real work!
compose_actions.cancel();
message_edit.start(msg_row, function () {
ui_util.focus_on('message_edit_content');
$('#message_edit_content').focus();
});
};