diff --git a/html/console.html b/html/console.html index 6cb74af..03444b9 100644 --- a/html/console.html +++ b/html/console.html @@ -39,7 +39,10 @@
Console
-
--- No Content ---
+
+
+
--- No Content ---
+
Console entry
@@ -96,6 +99,12 @@ function(s, st) { showWarning("Error clearing buffer in uC"); } ); }); + + $(".fullscreen-control").addEventListener("click", function(e) { + e.preventDefault(); + var fbc = this.parentNode.classList; + fbc[fbc.contains("full") ? "remove" : "add"].call(fbc, "full"); + }); ajaxJson('GET', "/console/baud", function(data) { $("#baud-sel").value = data.rate; },