mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			263 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			263 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| function message(str) {
 | |
|     $("#top-message").fadeIn(1500);
 | |
|     $("#top-message").html(str);
 | |
|     $("#top-message").fadeOut(1500);
 | |
| }
 | |
| 
 | |
| function error(str) {
 | |
|     $("#error-message").show();
 | |
|     $("#error-message").html(str);
 | |
|     $("#error-message").fadeOut(10000);
 | |
| } |