From 0e92aa37798c388969e552fcd3fa8ac56b1aa0aa Mon Sep 17 00:00:00 2001 From: Loic Blot Date: Tue, 6 Jan 2015 13:55:12 +0000 Subject: [PATCH] Js fix for checkNewMessages --- js/script.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/script.js b/js/script.js index 484bf6a..e245428 100644 --- a/js/script.js +++ b/js/script.js @@ -90,11 +90,11 @@ var checkNewMessages = function() { if ($.inArray(peerLabel, bufferedContacts) == -1) { $("div[mailbox-avatar='" + peerLabel + "']").remove(); $("a[mailbox-label='" + peerLabel + "']").remove(); - peerListBuf += '
  • ' + peerLabel + ' (' + val + ')
  • '; + peerListBuf += '>' + peerLabel + ' (' + val + ')'; $('#app-mailbox-peers ul').prepend(peerListBuf); bufferedContacts.push(peerLabel);