mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 22:28:51 +01:00
9 lines
250 B
JavaScript
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();
|
|
}
|
|
} |