mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
Remove debug logging
This commit is contained in:
parent
e07268e650
commit
a58d4d6997
1 changed files with 0 additions and 3 deletions
|
@ -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…
Reference in a new issue