mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-19 22:16:49 +00:00
7 lines
No EOL
289 B
JavaScript
7 lines
No EOL
289 B
JavaScript
document.addEventListener("DOMContentLoaded", function() {
|
|
basePath = document.getElementById("base_path")
|
|
if (basePath) {
|
|
// Remove '/containers' from the end of the path, to get the base path only
|
|
basePath.value = window.location.pathname.slice(0, -11);
|
|
}
|
|
}); |