mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 06:23:38 +00:00
With webpack, variables declared in each file are already file-local (Global variables need to be explicitly exported), so these IIFEs are no longer needed. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
13 lines
420 B
JavaScript
13 lines
420 B
JavaScript
// This file is being eliminated as part of the general purge of
|
|
// global variables from Zulip (everything is being moved into
|
|
// modules). Please don't add things here.
|
|
|
|
var home_msg_list = new message_list.MessageList({
|
|
table_name: 'zhome',
|
|
filter: new Filter([{operator: "in", operand: "home"}]),
|
|
muting_enabled: true,
|
|
});
|
|
|
|
window.home_msg_list = home_msg_list;
|
|
window.current_msg_list = home_msg_list;
|