mirror of https://github.com/zulip/zulip.git
refactor: Call format_drafts() more directly.
We want the return value from this for the next commit, so we no longer call `format_drafts` indirectly from `populate_and_fill`, and we rename the latter to `render_widgets`.
This commit is contained in:
parent
1584789916
commit
ebd6d84326
|
@ -285,9 +285,8 @@ exports.launch = function () {
|
|||
return sorted_formatted_drafts;
|
||||
}
|
||||
|
||||
function populate_and_fill() {
|
||||
function render_widgets(drafts) {
|
||||
$('#drafts_table').empty();
|
||||
var drafts = format_drafts(draft_model.get());
|
||||
var rendered = templates.render('draft_table_body', {
|
||||
drafts: drafts,
|
||||
draft_lifetime: DRAFT_LIFETIME,
|
||||
|
@ -321,7 +320,8 @@ exports.launch = function () {
|
|||
}
|
||||
|
||||
remove_old_drafts();
|
||||
populate_and_fill();
|
||||
var drafts = format_drafts(draft_model.get());
|
||||
render_widgets(drafts);
|
||||
exports.open_modal();
|
||||
exports.set_initial_element();
|
||||
setup_event_handlers();
|
||||
|
|
Loading…
Reference in New Issue