Fix hiding password fields when opening the config modal

master
Daniel Berteaud 9 years ago
parent f80463cfd7
commit a19f617006
  1. 1
      public/js/vroom.js

@ -426,6 +426,7 @@ function getRoomInfo(cb){
$('#askForNameSet').bootstrapSwitch('state', data.ask_for_name); $('#askForNameSet').bootstrapSwitch('state', data.ask_for_name);
$('#joinPassSet').bootstrapSwitch('state', data.join_auth); $('#joinPassSet').bootstrapSwitch('state', data.join_auth);
$('#ownerPassSet').bootstrapSwitch('state', data.owner_auth); $('#ownerPassSet').bootstrapSwitch('state', data.owner_auth);
$('#joinPassFields,#ownerPassFields').hide();
// exec a callback if needed // exec a callback if needed
if (typeof cb === 'function'){ if (typeof cb === 'function'){
cb(); cb();

Loading…
Cancel
Save