commit c2fc9bff792b21c29dec63cc283c06dfd74928c7
parent ec57a9137abf1965377704999c5db2cd6d284fa5
Author: Sheng <psychopathme@gmail.com>
Date:   Thu,  7 Dec 2017 19:23:21 +0800
Changed semicolon into comma
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/static/js/main.js b/static/js/main.js
@@ -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});