1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-13 17:17:23 +01:00

move jQuery load back to original place and put quota load code in index.html

This commit is contained in:
John Supplee
2019-02-01 01:05:28 +02:00
parent 1a67c94db0
commit f64fffe6b8
2 changed files with 10 additions and 12 deletions

View File

@@ -348,15 +348,4 @@ function generate_random_password() {
show_modal_error("Random Password", "<p>Here, try this:</p> <p><code style='font-size: 110%'>" + pw + "</code></p>");
return false; // cancel click
}
$(function() {
api(
"/system/default-quota",
"GET",
{},
function(r) {
$('#adduserQuota').val(r['default-quota']);
}
);
})
</script>