On select type DEDI check "is dedi cpu"
When selecting DEDI as the server type, "dedi cpu" will become checked.
This commit is contained in:
parent
92eb034c89
commit
1de086ebe0
6
assets/js/scripts.min.js
vendored
6
assets/js/scripts.min.js
vendored
|
@ -294,6 +294,12 @@ $(document).on("click", "#fillIpv4", function () {
|
|||
}
|
||||
});
|
||||
|
||||
$('#virt').change(function(){
|
||||
if($(this).val() == 'DEDI'){
|
||||
$('#dedi_cpu').prop("checked", true);
|
||||
}
|
||||
});
|
||||
|
||||
function modalServerEdit(id) {
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
|
|
Loading…
Reference in New Issue
Block a user