summaryrefslogtreecommitdiff
path: root/vnc_lite.html
diff options
context:
space:
mode:
authorSamuel Mannehed <samuel@cendio.se>2018-08-21 11:29:05 +0200
committerSamuel Mannehed <samuel@cendio.se>2018-08-28 10:42:39 +0200
commit8613f6f4ae0f048bdf13490b9a476641872a4035 (patch)
tree0e67a010b8d3b38a350d02f435c07f5ccd7a81bd /vnc_lite.html
parent011e4bff34c7d1a0540b388ec262308018ca57fe (diff)
downloadnovnc-8613f6f4ae0f048bdf13490b9a476641872a4035.tar.gz
Simplify element names in vnc_lite
Diffstat (limited to 'vnc_lite.html')
-rw-r--r--vnc_lite.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/vnc_lite.html b/vnc_lite.html
index 88e1079..2398bea 100644
--- a/vnc_lite.html
+++ b/vnc_lite.html
@@ -36,14 +36,14 @@
height: 100%;
}
- #noVNC_status_bar {
+ #top_bar {
background-color: #6e84a3;
color: white;
font: bold 12px Helvetica;
padding: 6px 5px 4px 5px;
border-bottom: 1px outset;
}
- #noVNC_status {
+ #status {
text-align: center;
}
#sendCtrlAltDelButton {
@@ -119,7 +119,7 @@
// Show a status text in the top bar
function status(text) {
- document.getElementById('noVNC_status').textContent = text;
+ document.getElementById('status').textContent = text;
}
// This function extracts the value of one variable from the
@@ -188,9 +188,9 @@
</head>
<body>
- <div id="noVNC_status_bar">
- <div id="noVNC_status">Loading</div>
- <div id="sendCtrlAltDelButton">Send CtrlAltDel</div>
- </div>
+ <div id="top_bar">
+ <div id="status">Loading</div>
+ <div id="sendCtrlAltDelButton">Send CtrlAltDel</div>
+ </div>
</body>
</html>