mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-10-06 05:24:37 +08: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
|
|
}
|
|
});
|