all-in-one/php/public/disable-whiteboard.js

6 lines
178 B
JavaScript
Raw Normal View History

document.addEventListener("DOMContentLoaded", function(event) {
// Whiteboard
let whiteboard = document.getElementById("whiteboard");
whiteboard.disabled = true;
});