Changed semicolon into comma

pull/4/head
Sheng 2017-12-07 19:23:21 +08:00
parent ec57a9137a
commit c2fc9bff79
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ jQuery(function($){
var ws_url = window.location.href.replace('http', 'ws'),
join = (ws_url[ws_url.length-1] == '/' ? '' : '/'),
url = ws_url + join + 'ws?id=' + msg.id;
url = ws_url + join + 'ws?id=' + msg.id,
socket = new WebSocket(url),
terminal = document.getElementById('#terminal'),
term = new Terminal({cursorBlink: true});