From a02ac71159b27ea7160f1f74151ade93c946f614 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Fri, 6 Jun 2014 13:53:10 +0200 Subject: [PATCH] Use warn class to notify that the room isn't persistent --- public/js/vroom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/vroom.js b/public/js/vroom.js index 08dd716..361e253 100644 --- a/public/js/vroom.js +++ b/public/js/vroom.js @@ -1693,7 +1693,7 @@ function initVroom(room) { success: function(data) { $('#ownerPass').val(''); if (data.status == 'success'){ - $.notify(data.msg, 'success'); + $.notify(data.msg, 'warn'); webrtc.sendToAll('owner_password', {action: 'remove'}); $('#persistentLabel').removeClass('btn-danger active'); }