Remove the active class on the help button

When the modal dialog is closed
master
Daniel Berteaud 11 years ago
parent 01d9f5a3f4
commit acf855cbfc
  1. 5
      public/js/vroom.js

@ -1744,6 +1744,11 @@ function initVroom(room) {
} }
}); });
// Remove the active class on the help button
$('#helpModal').on('hide.bs.modal',function(){
$('#helpButton').removeClass('active');
});
// Ping the room every minutes // Ping the room every minutes
// Used to detect inactive rooms // Used to detect inactive rooms
setInterval(function pingRoom(){ setInterval(function pingRoom(){

Loading…
Cancel
Save