From cdece954cfdf764b0f160cabf409dfc9213d4186 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Tue, 20 May 2014 11:21:03 +0200 Subject: [PATCH] Split huge line --- public/js/vroom.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/js/vroom.js b/public/js/vroom.js index 41c02b2..094b060 100644 --- a/public/js/vroom.js +++ b/public/js/vroom.js @@ -548,7 +548,10 @@ function initVroom(room) { // Add a new email address in the list of the ones notified when someone joins function addNotifiedEmail(email){ var id = email.replace('@', '_AT_').replace('.', '_DOT_'); - $('
  • ').html(email + ' ').attr('id', 'emailNotification_' + id) + $('
  • ').html(email + ' ' + + ' ' + + ' ') + .attr('id', 'emailNotification_' + id) .appendTo('#emailNotificationList'); }