Add notification count to notifications
This commit is contained in:
parent
24a7fe2d42
commit
54bb156f01
|
@ -929,11 +929,21 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
|
||||||
$rootScope.createHighlight = function(buffer, message) {
|
$rootScope.createHighlight = function(buffer, message) {
|
||||||
var title = '';
|
var title = '';
|
||||||
var body = '';
|
var body = '';
|
||||||
|
var numNotifications = buffer.notification;
|
||||||
|
|
||||||
if (['#', '&', '+', '!'].indexOf(buffer.shortName.charAt(0)) < 0) {
|
if (['#', '&', '+', '!'].indexOf(buffer.shortName.charAt(0)) < 0) {
|
||||||
|
if (numNotifications > 1) {
|
||||||
|
title = numNotifications.toString() + ' private messages from ';
|
||||||
|
} else {
|
||||||
title = 'Private message from ';
|
title = 'Private message from ';
|
||||||
|
}
|
||||||
body = message.text;
|
body = message.text;
|
||||||
|
} else {
|
||||||
|
if (numNotifications > 1) {
|
||||||
|
title = numNotifications.toString() + ' highlights in ';
|
||||||
} else {
|
} else {
|
||||||
title = 'Highlight in ';
|
title = 'Highlight in ';
|
||||||
|
}
|
||||||
var prefix = '';
|
var prefix = '';
|
||||||
for (var i = 0; i < message.prefix.length; i++) {
|
for (var i = 0; i < message.prefix.length; i++) {
|
||||||
prefix += message.prefix[i].text;
|
prefix += message.prefix[i].text;
|
||||||
|
|
Loading…
Reference in New Issue