mirror of
https://github.com/myvesta/vesta
synced 2025-07-12 16:13:34 -07:00
17 lines
466 B
JavaScript
17 lines
466 B
JavaScript
$(document).ready(function(){
|
|
$('select[name=v_filemanager]').change(function(){
|
|
if($(this).val() == 'yes'){
|
|
$('.filemanager.description').show();
|
|
} else {
|
|
$('.filemanager.description').hide();
|
|
}
|
|
});
|
|
|
|
$('select[name=v_sftp]').change(function(){
|
|
if($(this).val() == 'yes'){
|
|
$('.sftp.description').show();
|
|
} else {
|
|
$('.sftp.description').hide();
|
|
}
|
|
});
|
|
});
|