From 5f122fed9107db07a6329d8b30a8e2a77d17459b Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Thu, 22 Jan 2015 16:05:19 +0100 Subject: [PATCH] Hide auth modal on successful auth --- public/js/vroom.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/js/vroom.js b/public/js/vroom.js index 6e931fd..5105797 100644 --- a/public/js/vroom.js +++ b/public/js/vroom.js @@ -1658,6 +1658,7 @@ function initVroom(room) { success: function(data) { $('#authPass').val(''); if (data.status == 'success'){ + $('#ownerAuthModal').modal('hide'); getRoomInfo(); $.notify(data.msg, 'success'); }