left_sidebar: Move initialize() to end of file.

This commit is contained in:
Karl Stolley 2023-10-16 14:46:36 -05:00 committed by Tim Abbott
parent 458d6411b4
commit 3e78a792c1
1 changed files with 4 additions and 4 deletions

View File

@ -112,10 +112,6 @@ function do_new_messages_animation($li) {
setTimeout(end_animation, 6000);
}
export function initialize() {
update_scheduled_messages_row();
}
export function highlight_inbox_view() {
remove($(".top_left_all_messages"));
remove($(".top_left_starred_messages"));
@ -126,3 +122,7 @@ export function highlight_inbox_view() {
resize.resize_stream_filters_container();
}, 0);
}
export function initialize() {
update_scheduled_messages_row();
}