mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-14 09:40:15 +00:00
8 lines
180 B
JavaScript
8 lines
180 B
JavaScript
|
|
document.addEventListener("DOMContentLoaded", function(event) {
|
||
|
|
// HaRP
|
||
|
|
let harp = document.getElementById("harp");
|
||
|
|
if (harp) {
|
||
|
|
harp.disabled = true;
|
||
|
|
}
|
||
|
|
});
|