From a1149b8f8dc9821496d3dea7646e17fc76ea6cdd Mon Sep 17 00:00:00 2001 From: Baris Soner Usakli Date: Tue, 21 Jan 2014 10:38:20 -0500 Subject: [PATCH] notif unread class --- src/user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/user.js b/src/user.js index ed0e92a1dd..2ec7bf70cb 100644 --- a/src/user.js +++ b/src/user.js @@ -1015,7 +1015,7 @@ var bcrypt = require('bcrypt'), return parseInt(b.datetime, 10) - parseInt(a.datetime, 10); }).map(function(notif) { notif.datetimeISO = utils.toISOString(notif.datetime); - notif.readClass = !notif.read ? 'unread' : ''; + notif.readClass = !notif.read ? 'label-warning' : ''; return notif; });