diff src/chat.js @ 18:0721dcf222e1

* alert
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 04 Nov 2024 17:08:41 -0700
parents 7230c821c368
children 435f474f07c7
line wrap: on
line diff
--- a/src/chat.js	Mon Nov 04 14:44:35 2024 -0700
+++ b/src/chat.js	Mon Nov 04 17:08:41 2024 -0700
@@ -1,5 +1,6 @@
 'use strict';
 
+let title = document.title;
 let currentChatId = null;
 let eventSource;
 
@@ -77,6 +78,8 @@
 	input.insertAdjacentHTML('beforebegin',html);
 	fixDates();
 	input.scrollIntoView({block: 'end'});
+	if( !document.hasFocus() )
+		document.title = title + ' *';
 }
 
 function getChats(chatId) {
@@ -100,3 +103,7 @@
 		}
 	}
 }
+
+window.onfocus = function() {
+	document.title = title;
+};