v1.18.x
Julian Lam 8 years ago
parent da72f6081b
commit dd8759b0e9

@ -13,6 +13,14 @@ define('forum/notifications', ['components', 'notifications', 'forum/infinitescr
if (err) {
return app.alertError(err);
}
socket.emit('notifications.getCount', function (err, count) {
if (err) {
return app.alertError(err.message);
}
notifs.updateNotifCount(count);
});
});
});

Loading…
Cancel
Save