mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	This is needed not because the DOM isn’t ready here (we’re in a <script defer>), but because we want to wait an asynchronous tick until after all the other callbacks that waited an asynchronous tick for the DOM to be ready. Signed-off-by: Anders Kaseorg <anders@zulip.com>
		
			
				
	
	
		
			6 lines
		
	
	
		
			81 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			81 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import $ from "jquery";
 | 
						|
 | 
						|
$(() => {
 | 
						|
    $("#app-loading").addClass("loaded");
 | 
						|
});
 |