mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	ES and TypeScript modules are strict by default and don’t need this directive. ESLint will remind us to add it to new CommonJS files and remove it from ES and TypeScript modules. Signed-off-by: Anders Kaseorg <anders@zulip.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			437 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			437 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
"use strict";
 | 
						|
 | 
						|
// 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;
 |