metatitle

This commit is contained in:
Baris Soner Usakli
2014-01-16 17:11:27 -05:00
parent 7470c1bbd9
commit 1ec21c2bfd
2 changed files with 3 additions and 2 deletions

View File

@@ -421,6 +421,7 @@ var socket,
interval: undefined, interval: undefined,
titles: [] titles: []
}; };
app.alternatingTitle = function (title) { app.alternatingTitle = function (title) {
if (typeof title !== 'string') { if (typeof title !== 'string') {
return; return;
@@ -451,7 +452,7 @@ var socket,
url = a.pathname.slice(1); url = a.pathname.slice(1);
} }
socket.emit('meta.buildTitle', url, function(title, numNotifications) { socket.emit('meta.buildTitle', url, function(err, title, numNotifications) {
titleObj.titles[0] = (numNotifications > 0 ? '(' + numNotifications + ') ' : '') + title; titleObj.titles[0] = (numNotifications > 0 ? '(' + numNotifications + ') ' : '') + title;
app.alternatingTitle(''); app.alternatingTitle('');
}); });

View File

@@ -31,7 +31,7 @@ SocketMeta.reconnected = function(socket) {
SocketMeta.buildTitle = function(socket, text, callback) { SocketMeta.buildTitle = function(socket, text, callback) {
meta.title.build(text, function(err, title) { meta.title.build(text, function(err, title) {
callback(title); callback(err, title);
}); });
}; };