From 45b56ada8615d3a73b3794c1794681efd00348ba Mon Sep 17 00:00:00 2001 From: nuintun Date: Tue, 1 Dec 2015 18:16:52 +0800 Subject: [PATCH] update files --- static/js/terminal/xterm.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/static/js/terminal/xterm.js b/static/js/terminal/xterm.js index 114063f..6c8880d 100644 --- a/static/js/terminal/xterm.js +++ b/static/js/terminal/xterm.js @@ -2770,4 +2770,10 @@ function styles(node){ return styles; } -console.log(COLORS); +var colors = ''; + +COLORS.forEach(function (color, index){ + colors += '\r\n' + index + ': ' + color; +}); + +console.log(colors);