diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-05-18 07:02:17 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-05-18 07:02:17 +0000 |
commit | c08f229318cc3fbcad3aee7d5ebbb94fb68f6f34 (patch) | |
tree | db13845baa243c8bff4367cab040486e55ea81e3 /javascript/notification.js | |
parent | 1ceb82bc74ace8958767ae7d844bef0fb4bf0e9b (diff) | |
parent | 57b75f4a037658c1122aa092d1775ac52036b2cf (diff) | |
download | stable-diffusion-webui-gfx803-c08f229318cc3fbcad3aee7d5ebbb94fb68f6f34.tar.gz stable-diffusion-webui-gfx803-c08f229318cc3fbcad3aee7d5ebbb94fb68f6f34.tar.bz2 stable-diffusion-webui-gfx803-c08f229318cc3fbcad3aee7d5ebbb94fb68f6f34.zip |
Merge branch 'eslint' into dev
Diffstat (limited to 'javascript/notification.js')
-rw-r--r-- | javascript/notification.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/javascript/notification.js b/javascript/notification.js index 83fce1f8..a68a76f2 100644 --- a/javascript/notification.js +++ b/javascript/notification.js @@ -4,14 +4,14 @@ let lastHeadImg = null; let notificationButton = null; -onUiUpdate(function(){ - if(notificationButton == null){ - notificationButton = gradioApp().getElementById('request_notifications') +onUiUpdate(function() { + if (notificationButton == null) { + notificationButton = gradioApp().getElementById('request_notifications'); - if(notificationButton != null){ + if (notificationButton != null) { notificationButton.addEventListener('click', () => { void Notification.requestPermission(); - },true); + }, true); } } @@ -42,7 +42,7 @@ onUiUpdate(function(){ } ); - notification.onclick = function(_){ + notification.onclick = function(_) { parent.focus(); this.close(); }; |