Merge pull request #1460 from FlxAlbroscheit/develop

Issue 1163: Feature allowing desktop-notifications
This commit is contained in:
Tobias Diekershoff 2015-04-05 11:37:05 +02:00
commit 106b0b5d23
3 changed files with 21 additions and 0 deletions

View file

@ -182,6 +182,18 @@
text = e.text().format("<span class='contactname'>"+e.attr('name')+"</span>");
html = notifications_tpl.format(e.attr('href'),e.attr('photo'), text, e.attr('date'), e.attr('seen'));
nnm.append(html);
if(e.text().search('&rarr;') == 0) {
var notification = new Notification(document.title, {
body: e.text().replace('&rarr; ',''),
icon: e.attr('photo')
});
// TODO (yet unsupported by most browsers):
// Implement notification.onclick()
notifyMarkAll();
}
});
$("img[data-src]", nnm).each(function(i, el){