mirror of
https://github.com/humhub/humhub.git
synced 2025-02-22 18:22:43 +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: 2000});
|
||
|
if(notify.permissionLevel() != notify.PERMISSION_GRANTED){
|
||
|
notify.requestPermission();
|
||
|
}
|
||
|
}
|