diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-05-08 06:01:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 06:01:25 +0000 |
commit | 73d956454f0111ffdbebc0285033ca3dd630346b (patch) | |
tree | 4396fd0dfed3e0a7a5aac04a159619cec1b2f535 /javascript/notification.js | |
parent | 57a3d146e3e193904c1c5e148f7244b9d045f157 (diff) | |
parent | b15bbef798f5aba047f0e6955ce94fe589071b44 (diff) | |
download | stable-diffusion-webui-gfx803-73d956454f0111ffdbebc0285033ca3dd630346b.tar.gz stable-diffusion-webui-gfx803-73d956454f0111ffdbebc0285033ca3dd630346b.tar.bz2 stable-diffusion-webui-gfx803-73d956454f0111ffdbebc0285033ca3dd630346b.zip |
Merge branch 'dev' into tooltip
Diffstat (limited to 'javascript/notification.js')
-rw-r--r-- | javascript/notification.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/javascript/notification.js b/javascript/notification.js index 8ddd4c5d..83fce1f8 100644 --- a/javascript/notification.js +++ b/javascript/notification.js @@ -2,15 +2,15 @@ let lastHeadImg = null; -notificationButton = null +let notificationButton = null; onUiUpdate(function(){ if(notificationButton == null){ notificationButton = gradioApp().getElementById('request_notifications') if(notificationButton != null){ - notificationButton.addEventListener('click', function (evt) { - Notification.requestPermission(); + notificationButton.addEventListener('click', () => { + void Notification.requestPermission(); },true); } } |