From f95e2730bdfa5e45842b7fd0e480da81f9bff426 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Wed, 28 May 2014 12:42:06 +0200 Subject: [PATCH] Change ping responce notif class to info And disable autoHide --- 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 f48b083..909ee4c 100644 --- a/public/js/vroom.js +++ b/public/js/vroom.js @@ -1582,7 +1582,10 @@ function initVroom(room) { }, success: function(data) { if (data.status == 'success' && data.msg && data.msg != ''){ - $.notify(data.msg, 'success'); + $.notify(data.msg, { + className: 'info', + autoHide: false + }); } } });