mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Display current stopwatch in navbar (#14122)
* add notification about running stopwatch to header * serialize seconds, duration in stopwatches api * ajax update stopwatch i should get my testenv working locally... * new variant: hover dialog * noscript compatibility * js: live-update stopwatch time * js live update robustness
This commit is contained in:
		@@ -22,6 +22,7 @@ import createDropzone from './features/dropzone.js';
 | 
			
		||||
import initTableSort from './features/tablesort.js';
 | 
			
		||||
import ActivityTopAuthors from './components/ActivityTopAuthors.vue';
 | 
			
		||||
import {initNotificationsTable, initNotificationCount} from './features/notification.js';
 | 
			
		||||
import {initStopwatch} from './features/stopwatch.js';
 | 
			
		||||
import {createCodeEditor, createMonaco} from './features/codeeditor.js';
 | 
			
		||||
import {svg, svgs} from './svg.js';
 | 
			
		||||
import {stripTags} from './utils.js';
 | 
			
		||||
@@ -2626,6 +2627,7 @@ $(document).ready(async () => {
 | 
			
		||||
    initProject(),
 | 
			
		||||
    initServiceWorker(),
 | 
			
		||||
    initNotificationCount(),
 | 
			
		||||
    initStopwatch(),
 | 
			
		||||
    renderMarkdownContent(),
 | 
			
		||||
    initGithook(),
 | 
			
		||||
  ]);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user