remove # from socket url...
This commit is contained in:
@ -6,7 +6,8 @@ CodeOceanEditorWebsocket = {
|
||||
sockURL.pathname = url;
|
||||
sockURL.protocol = '<%= DockerClient.config['ws_client_protocol'] %>';
|
||||
|
||||
return sockURL.toString();
|
||||
//return the URL, but strip last # if there is one...
|
||||
return sockURL.toString().replace(/#$/,'');
|
||||
},
|
||||
|
||||
initializeSocket: function(url) {
|
||||
|
Reference in New Issue
Block a user