mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-07-12 08:06:41 -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();
|
|
}
|
|
});
|
|
});
|