mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 12:03:46 +00:00 
			
		
		
		
	This commit was originally automatically generated using `tools/lint --only=eslint --fix`. It was then modified by tabbott to contain only changes to a set of files that are unlikely to result in significant merge conflicts with any open pull request, excluding about 20 files. His plan is to merge the remaining changes with more precise care, potentially involving merging parts of conflicting pull requests before running the `eslint --fix` operation. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			422 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			422 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.
 | |
| 
 | |
| const 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;
 |