2017-03-02 18:23:23 +08:00
|
|
|
$(document).ready(function() {
|
2017-05-27 05:02:04 +08:00
|
|
|
// Auto-fill domain quota when adding new domain
|
2017-05-13 15:42:17 +08:00
|
|
|
auto_fill_quota = function(domain) {
|
|
|
|
$.get("/api/v1/get/domain/" + domain, function(data){
|
2017-04-30 04:19:35 +08:00
|
|
|
var result = $.parseJSON(JSON.stringify(data));
|
2017-03-02 18:23:23 +08:00
|
|
|
max_new_mailbox_quota = ( result.max_new_mailbox_quota / 1048576);
|
|
|
|
if (max_new_mailbox_quota != '0') {
|
|
|
|
$("#quotaBadge").html('max. ' + max_new_mailbox_quota + ' MiB');
|
|
|
|
$('#addInputQuota').attr({"disabled": false, "value": "", "type": "number", "max": max_new_mailbox_quota});
|
2017-05-13 15:42:17 +08:00
|
|
|
$('#addInputQuota').val(max_new_mailbox_quota);
|
2017-03-02 18:23:23 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$("#quotaBadge").html('max. ' + max_new_mailbox_quota + ' MiB');
|
|
|
|
$('#addInputQuota').attr({"disabled": true, "value": "", "type": "text", "value": "n/a"});
|
2017-05-13 15:42:17 +08:00
|
|
|
$('#addInputQuota').val(max_new_mailbox_quota);
|
2017-03-02 18:23:23 +08:00
|
|
|
}
|
|
|
|
});
|
2017-05-13 15:42:17 +08:00
|
|
|
}
|
|
|
|
$('#addSelectDomain').on('change', function() {
|
|
|
|
auto_fill_quota($('#addSelectDomain').val());
|
2017-03-02 18:23:23 +08:00
|
|
|
});
|
2017-05-13 15:42:17 +08:00
|
|
|
auto_fill_quota($('#addSelectDomain').val());
|
2017-03-02 18:23:23 +08:00
|
|
|
});
|