Merge pull request #1789 from thelounge/xpaw/notification-permission
Ask for notification permission on page load if setting is enabled
This commit is contained in:
commit
8a568a3ef4
@ -132,11 +132,21 @@ module.exports.initialize = () => {
|
||||
.trigger("change");
|
||||
|
||||
$("#desktopNotifications").on("change", function() {
|
||||
if ($(this).prop("checked") && Notification.permission !== "granted") {
|
||||
Notification.requestPermission(updateDesktopNotificationStatus);
|
||||
if ($(this).prop("checked")) {
|
||||
requestPermissionIfNeeded();
|
||||
}
|
||||
});
|
||||
|
||||
var requestPermissionIfNeeded = function() {
|
||||
if (Notification.permission !== "granted") {
|
||||
Notification.requestPermission(updateDesktopNotificationStatus);
|
||||
}
|
||||
};
|
||||
|
||||
if (options.desktopNotifications) {
|
||||
requestPermissionIfNeeded();
|
||||
}
|
||||
|
||||
// Updates the checkbox and warning in settings when the Settings page is
|
||||
// opened or when the checkbox state is changed.
|
||||
// When notifications are not supported, this is never called (because
|
||||
|
Loading…
Reference in New Issue
Block a user