mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-02-05 01:23:11 -08:00
18 lines
466 B
JavaScript
18 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();
|
|
}
|
|
});
|
|
});
|