1
0
mirror of https://github.com/humhub/humhub.git synced 2025-05-06 07:05:23 +02:00
humhub/static/js/desktop-notify-config.js

9 lines
250 B
JavaScript

if(!notify.isSupported){
// display message that it will be supported
}
else{
notify.config({pageVisibility: false, autoClose: 5000});
if(notify.permissionLevel() != notify.PERMISSION_GRANTED){
notify.requestPermission();
}
}