Enhance URL handling (let -> const)

This commit is contained in:
Kristóf Tóth 2018-01-26 15:20:40 +01:00
parent 8459bf0797
commit f810df0d9d
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ export class TerminadoService {
Terminal.applyAddon(fit); Terminal.applyAddon(fit);
Terminal.applyAddon(terminado); Terminal.applyAddon(terminado);
this.xterm = new Terminal(); this.xterm = new Terminal();
let wsproto = (location.protocol === 'https:') ? 'wss://' : 'ws://'; const wsproto = (location.protocol === 'https:') ? 'wss://' : 'ws://';
this.ws = new WebSocket(wsproto + window.location.host + '/terminal'); this.ws = new WebSocket(wsproto + window.location.host + '/terminal');
} }

View File

@ -30,7 +30,7 @@ export class WebSocketService {
// Using share() causes a single WebSocket to be created when the first // Using share() causes a single WebSocket to be created when the first
// observer subscribes. This socket is shared with subsequent observers // observer subscribes. This socket is shared with subsequent observers
// and closed when the observer count falls to zero. // and closed when the observer count falls to zero.
let wsproto = (location.protocol === 'https:') ? 'wss://' : 'ws://'; const wsproto = (location.protocol === 'https:') ? 'wss://' : 'ws://';
this.downlink = jsonWebsocketConnect( this.downlink = jsonWebsocketConnect(
wsproto + window.location.host + '/ws', wsproto + window.location.host + '/ws',
this.uplink = new QueueingSubject<object>() this.uplink = new QueueingSubject<object>()