mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
Allow browser to notify even if verbosity is low, in case browser is not visible
This commit is contained in:
parent
e9ba37173a
commit
4283e1122e
@ -263,7 +263,7 @@ class notifications_ajax {
|
||||
if ($rs->NumRows() > 0) {
|
||||
foreach ($rs as $notification) {
|
||||
$message = null;
|
||||
if($browserNotify && $this->preferences[self::_appname]['egwpopup_verbosity'] != 'low')
|
||||
if($browserNotify)
|
||||
{
|
||||
$message = $notification['notify_message'];
|
||||
|
||||
|
@ -131,6 +131,8 @@ function append_notification_message(_id, _message, _browser_notify) {
|
||||
notifymessages[_id] = _message;
|
||||
|
||||
// Notification API
|
||||
if(_browser_notify)
|
||||
{
|
||||
var notice = webkitNotifications.createHTMLNotification(_browser_notify);
|
||||
notice.ondisplay = function() {
|
||||
// Confirm when user gets to see it - no close needed
|
||||
@ -141,3 +143,4 @@ function append_notification_message(_id, _message, _browser_notify) {
|
||||
};
|
||||
notice.show();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user