diff options
author | Christian Beier <dontmind@freeshell.org> | 2016-06-03 11:09:47 +0200 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2016-06-03 11:09:47 +0200 |
commit | 962e1082e835b95abc448cacba2c9ea5cdd200c1 (patch) | |
tree | 730791c1d9af622a4ba2b9ebdf48c2eded259264 /webclients/novnc/include/vnc.js | |
parent | 15dd6470c552c7c8c112f0f78bde414b9f6a2714 (diff) | |
download | libtdevnc-962e1082e835b95abc448cacba2c9ea5cdd200c1.tar.gz libtdevnc-962e1082e835b95abc448cacba2c9ea5cdd200c1.zip |
Update bundled noVNC to latest release 0.5.1
Fixes https://github.com/LibVNC/libvncserver/issues/54
Diffstat (limited to 'webclients/novnc/include/vnc.js')
-rw-r--r-- | webclients/novnc/include/vnc.js | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/webclients/novnc/include/vnc.js b/webclients/novnc/include/vnc.js deleted file mode 100644 index 7679d84..0000000 --- a/webclients/novnc/include/vnc.js +++ /dev/null @@ -1,43 +0,0 @@ -/* - * noVNC: HTML5 VNC client - * Copyright (C) 2012 Joel Martin - * Licensed under LGPL-3 (see LICENSE.txt) - * - * See README.md for usage and integration instructions. - */ - -/*jslint evil: true */ -/*global window, document, INCLUDE_URI */ - -/* - * Load supporting scripts - */ -function get_INCLUDE_URI() { - return (typeof INCLUDE_URI !== "undefined") ? INCLUDE_URI : "include/"; -} - -(function () { - "use strict"; - - var extra = "", start, end; - - start = "<script src='" + get_INCLUDE_URI(); - end = "'><\/script>"; - - // Uncomment to activate firebug lite - //extra += "<script src='http://getfirebug.com/releases/lite/1.2/" + - // "firebug-lite-compressed.js'><\/script>"; - - extra += start + "util.js" + end; - extra += start + "webutil.js" + end; - extra += start + "base64.js" + end; - extra += start + "websock.js" + end; - extra += start + "des.js" + end; - extra += start + "input.js" + end; - extra += start + "display.js" + end; - extra += start + "rfb.js" + end; - extra += start + "jsunzip.js" + end; - - document.write(extra); -}()); - |