diff --git a/spice.html b/spice.html index f9e1af4cb985176e857ba6c2b47058cf40d83aef..d744ef987a596998a0d542691da0ce63f73baaf9 100644 --- a/spice.html +++ b/spice.html @@ -146,8 +146,10 @@ m.style.display = 'none'; } - window.addEventListener('resize', handle_resize); - SpiceHtml5.resize_helper(sc); + window.addEventListener('resize', SpiceHtml5.handle_resize); + if (sc) { + SpiceHtml5.resize_helper(sc); + } } /* SPICE port event listeners window.addEventListener('spice-port-data', function(event) { @@ -162,6 +164,7 @@ */ document.getElementById('connectButton').onclick = connect; + document.getElementById('show_console').onchange = toggle_console; </script> </head> @@ -173,7 +176,7 @@ <label for="host">Host:</label> <input type='text' id='host' value='localhost'> <!-- localhost --> <label for="port">Port:</label> <input type='text' id='port' value='5959'> <label for="password">Password:</label> <input type='password' id='password' value=''> - <label for="show_console">Show console </label><input type="checkbox" id="show_console" value="1" onchange="toggle_console()" checked> + <label for="show_console">Show console </label><input type="checkbox" id="show_console" value="1"" checked> <button id="connectButton">Start</button> </div>