mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			260 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			260 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| $(function() {
 | |
|     $(window).resize(function() {
 | |
|         $('div#tree').height($(window).height() - $('div#tree').offset().top);
 | |
|         $('div.note-editable').height($(window).height() - $('div.note-editable').offset().top);
 | |
|     });
 | |
|     $(window).resize();
 | |
| }); |