mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 10:56:10 +01:00 
			
		
		
		
	make preventDuplicates default to true, users get a clear UI feedback and know that "a new message appears". Fixes: https://github.com/go-gitea/gitea/issues/26651 --------- Co-authored-by: silverwind <me@silverwind.io>
		
			
				
	
	
		
			15 lines
		
	
	
		
			504 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			504 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import {showInfoToast, showWarningToast, showErrorToast} from '../modules/toast.js';
 | |
| 
 | |
| function initDevtestToast() {
 | |
|   const levelMap = {info: showInfoToast, warning: showWarningToast, error: showErrorToast};
 | |
|   for (const el of document.querySelectorAll('.toast-test-button')) {
 | |
|     el.addEventListener('click', () => {
 | |
|       const level = el.getAttribute('data-toast-level');
 | |
|       const message = el.getAttribute('data-toast-message');
 | |
|       levelMap[level](message);
 | |
|     });
 | |
|   }
 | |
| }
 | |
| 
 | |
| initDevtestToast();
 |