mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Try to close notification on all platforms which support it, not just electron
This commit is contained in:
parent
be2d0c9de7
commit
7fe9fcf050
1 changed files with 6 additions and 0 deletions
|
@ -155,7 +155,13 @@ export default abstract class BasePlatform {
|
|||
|
||||
loudNotification(ev: Event, room: Object) {
|
||||
}
|
||||
|
||||
clearNotification(notif: Notification) {
|
||||
// Some browsers don't support this, e.g Safari on iOS
|
||||
// https://developer.mozilla.org/en-US/docs/Web/API/Notification/close
|
||||
if (notif.close) {
|
||||
notif.close();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue