diff --git a/htmlContent/panel.html b/htmlContent/panel.html index 864ae2d..132a0f4 100644 --- a/htmlContent/panel.html +++ b/htmlContent/panel.html @@ -5,7 +5,9 @@
+ {{#fileName}} {{fileName}} at line: {{lineNumber}}, column: {{columnNumber}} + {{/fileName}} {{#errorStacks}} {{.}} diff --git a/main.js b/main.js index 7bd0cea..42de1ee 100644 --- a/main.js +++ b/main.js @@ -120,11 +120,11 @@ define(function (require, exports, module) { var column = lineAndColumn !== null ? lineAndColumn.length ? lineAndColumn[1] : '' : ''; return { - shortFileName: shortFile, fileName: file, lineNumber: line, + errorStacks: traces, columnNumber: column, - errorStacks: traces + shortFileName: shortFile }; } /** ------------------------------------ diff --git a/styles/styles.less b/styles/styles.less index 64804fe..9c2a6e4 100644 --- a/styles/styles.less +++ b/styles/styles.less @@ -13,7 +13,7 @@ @green:#ACE539; @grey:#999580; #brackets-console-panel{ - &.bottom-panel{ + &.bottom-panel{ border:0; color:@light; text-shadow: @shadow;