var text = 'Оповещаю Вас о важнейшем событии'
notify = function( text ) {
if ( requestNotificationPermissions() ) {
var n = new Notification(
'Оповещение!',
{ icon: 'images/image.png', body: text });
setTimeout( n.close.bind(n), 5000 );
}
},