mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
Remove debug logging
This commit is contained in:
parent
e07268e650
commit
a58d4d6997
@ -17,20 +17,17 @@ export const TitleNotifier: FC = () => {
|
||||
let defaultTitle = '';
|
||||
|
||||
const onBlur = () => {
|
||||
console.log('onBlur');
|
||||
backgrounded = true;
|
||||
defaultTitle = document.title;
|
||||
};
|
||||
|
||||
const onFocus = () => {
|
||||
console.log('onFocus');
|
||||
backgrounded = false;
|
||||
window.document.title = defaultTitle;
|
||||
};
|
||||
|
||||
const listenForEvents = () => {
|
||||
// Listen for events that should update the title
|
||||
console.log('listenForEvents');
|
||||
window.addEventListener('blur', onBlur);
|
||||
window.addEventListener('focus', onFocus);
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user