diff --git a/static/js/wide.js b/static/js/wide.js index 05f49bf..01dc192 100644 --- a/static/js/wide.js +++ b/static/js/wide.js @@ -421,17 +421,17 @@ var wide = { case 'start-test': case 'start-install': case 'start-get': - bottomGroup.fillOutput('
' + data.output + '
'); + bottomGroup.fillOutput(data.output); break; case 'go test': case 'go install': case 'go get': - bottomGroup.fillOutput($('.bottom-window-group .output > div').html() + '
' + data.output + '
'); + bottomGroup.fillOutput($('.bottom-window-group .output > div').html() + data.output); break; case 'build': - bottomGroup.fillOutput($('.bottom-window-group .output > div').html() + '
' + data.output + '
'); + bottomGroup.fillOutput($('.bottom-window-group .output > div').html() + data.output); if (data.lints) { // has build error for (var i = 0; i < data.lints.length; i++) {