summaryrefslogtreecommitdiffstats
path: root/webclients/novnc/include/webutil.js
diff options
context:
space:
mode:
authorChristian Beier <dontmind@freeshell.org>2012-04-12 18:41:14 +0200
committerChristian Beier <dontmind@freeshell.org>2012-04-12 18:41:14 +0200
commit98f4037785246f77e544bab9196f076fe310be16 (patch)
tree9531342656a66e0963ff9b55a00db2fe3222e31d /webclients/novnc/include/webutil.js
parentefcdab50cc10ad121653bfff0da441495af461d3 (diff)
downloadlibtdevnc-98f4037785246f77e544bab9196f076fe310be16.tar.gz
libtdevnc-98f4037785246f77e544bab9196f076fe310be16.zip
Update our copy of noVNC.
Bugfixes and support for tight encoding with zlib.
Diffstat (limited to 'webclients/novnc/include/webutil.js')
-rw-r--r--webclients/novnc/include/webutil.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/webclients/novnc/include/webutil.js b/webclients/novnc/include/webutil.js
index 95138f8..7a0a076 100644
--- a/webclients/novnc/include/webutil.js
+++ b/webclients/novnc/include/webutil.js
@@ -8,7 +8,7 @@
"use strict";
/*jslint bitwise: false, white: false */
-/*global window, document */
+/*global Util, window, document */
// Globals defined here
var WebUtil = {}, $D;
@@ -17,7 +17,7 @@ var WebUtil = {}, $D;
* Simple DOM selector by ID
*/
if (!window.$D) {
- $D = function (id) {
+ window.$D = function (id) {
if (document.getElementById) {
return document.getElementById(id);
} else if (document.all) {
@@ -42,8 +42,8 @@ WebUtil.init_logging = function() {
/logging=([A-Za-z0-9\._\-]*)/) ||
['', Util._log_level])[1];
- Util.init_logging()
-}
+ Util.init_logging();
+};
WebUtil.init_logging();