JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fix bright bg, add ansi chars, more esc seqs
[watch-my-terminal.git] / server.coffee
index f1e208a..4f9dc14 100644 (file)
@@ -1,6 +1,6 @@
 # SETTINGS
-term_lines = 32
-term_columns = 104
+term_columns = 97
+term_lines = 63
 http_port = 2218
 
 
@@ -18,6 +18,9 @@ handler = (req, res) ->
                when '/terminal.js'
                        filename = __dirname + '/terminal.coffee'
                        type = 'text/javascript'
+               when '/htmlterm.js'
+                       filename = __dirname + '/htmlterm.coffee'
+                       type = 'text/javascript'
                when '/client.js'
                        filename = __dirname + '/client.coffee'
                        type = 'text/javascript'