1
0
mirror of https://github.com/dani/vroom.git synced 2024-06-28 01:39:29 +02:00

Move passwords hide/unhide code to the global scope

So it's also available from the admin interface
This commit is contained in:
Daniel Berteaud 2015-01-23 16:34:37 +01:00
parent dc0443d32c
commit 8fa6fad617

View File

@ -209,6 +209,27 @@ $('#joinPassConfirm').on('input', function() {
$('#joinPassConfirm').parent().addClass('has-error');
}
});
// Hide or show password fields
$('#joinPassSet').on('switchChange.bootstrapSwitch', function(event, state) {
if (state){
$('#joinPassFields').show(200);
}
else{
$('#joinPassFields').hide(200);
}
});
$('#ownerPassSet').on('switchChange.bootstrapSwitch', function(event, state) {
if (state){
$('#ownerPassFields').show(200);
}
else{
$('#ownerPassFields').hide(200);
}
});
// Used on the index page
function initIndex(){
var room;
@ -1633,24 +1654,6 @@ function initVroom(room) {
});
});
// Hide or show password fields
$('#joinPassSet').on('switchChange.bootstrapSwitch', function(event, state) {
if (state){
$('#joinPassFields').show(200);
}
else{
$('#joinPassFields').hide(200);
}
});
$('#ownerPassSet').on('switchChange.bootstrapSwitch', function(event, state) {
if (state){
$('#ownerPassFields').show(200);
}
else{
$('#ownerPassFields').hide(200);
}
});
// Submit the configuration form
$('#configureRoomForm').submit(function(e){
e.preventDefault();