Fixed noVNC when running on non-standard HTTPS port.
This commit is contained in:
parent
518642d5a9
commit
d986433de1
|
@ -2197,7 +2197,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (message.tag == 'novnc') {
|
if (message.tag == 'novnc') {
|
||||||
var vncurl = window.location.origin + domainUrl + 'novnc/vnc.html?ws=wss%3A%2F%2F' + window.location.hostname + '%2Fmeshrelay.ashx%3Fauth%3D' + message.cookie + '&show_dot=1';
|
var vncurl = window.location.origin + domainUrl + 'novnc/vnc.html?ws=wss%3A%2F%2F' + window.location.host + '%2Fmeshrelay.ashx%3Fauth%3D' + message.cookie + '&show_dot=1';
|
||||||
var node = getNodeFromId(message.nodeid);
|
var node = getNodeFromId(message.nodeid);
|
||||||
if (node != null) { vncurl += '&name=' + encodeURIComponentEx(node.name); }
|
if (node != null) { vncurl += '&name=' + encodeURIComponentEx(node.name); }
|
||||||
var newWindow = window.open(vncurl, 'mcnovnc/' + message.nodeid);
|
var newWindow = window.open(vncurl, 'mcnovnc/' + message.nodeid);
|
||||||
|
|
Loading…
Reference in New Issue