Limit line length to 80 in vnc_lite
This commit is contained in:
parent
1c945f812b
commit
e20f0ee9b6
|
@ -19,8 +19,8 @@
|
|||
|
||||
<meta charset="utf-8">
|
||||
|
||||
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
|
||||
Remove this if you use the .htaccess -->
|
||||
<!-- Always force latest IE rendering engine (even in intranet) &
|
||||
Chrome Frame. Remove this if you use the .htaccess -->
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
|
||||
<style type="text/css">
|
||||
|
@ -73,7 +73,8 @@
|
|||
window.addEventListener("load", function() {
|
||||
if (window._noVNC_has_module_support) return;
|
||||
const loader = document.createElement("script");
|
||||
loader.src = "vendor/browser-es-module-loader/dist/browser-es-module-loader.js";
|
||||
loader.src = "vendor/browser-es-module-loader/dist/" +
|
||||
"browser-es-module-loader.js";
|
||||
document.head.appendChild(loader);
|
||||
});
|
||||
</script>
|
||||
|
@ -148,7 +149,8 @@
|
|||
return defaultValue;
|
||||
}
|
||||
|
||||
document.getElementById('sendCtrlAltDelButton').onclick = sendCtrlAltDel;
|
||||
document.getElementById('sendCtrlAltDelButton')
|
||||
.onclick = sendCtrlAltDel;
|
||||
|
||||
// Read parameters specified in the URL query string
|
||||
// By default, use the host and port of server that served this file
|
||||
|
|
Loading…
Reference in New Issue