mirror of
https://github.com/myvesta/vesta
synced 2025-07-30 11:39:44 -07:00
Flatta and Diman fixes
This commit is contained in:
commit
3bed87ba15
98 changed files with 5260 additions and 3031 deletions
17
web/js/pages/edit_server.js
Normal file
17
web/js/pages/edit_server.js
Normal file
|
@ -0,0 +1,17 @@
|
|||
$(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();
|
||||
}
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue