mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
7 lines
208 B
JavaScript
7 lines
208 B
JavaScript
document.addEventListener("DOMContentLoaded", function(event) {
|
|
// domain
|
|
let domain = document.getElementById("domain_input");
|
|
if (domain) {
|
|
domain.value = window.location.host
|
|
}
|
|
});
|