summaryrefslogtreecommitdiffstats
path: root/nfsw/static/io.js
diff options
context:
space:
mode:
Diffstat (limited to 'nfsw/static/io.js')
-rw-r--r--nfsw/static/io.js14
1 files changed, 5 insertions, 9 deletions
diff --git a/nfsw/static/io.js b/nfsw/static/io.js
index c141903..a1a8405 100644
--- a/nfsw/static/io.js
+++ b/nfsw/static/io.js
@@ -123,7 +123,7 @@ document.addEventListener('DOMContentLoaded', function() {
}
barfblank();
- p = document.createElement('p');
+ p = document.createElement('pre');
p.className = type;
p.append(txt);
@@ -133,10 +133,10 @@ document.addEventListener('DOMContentLoaded', function() {
return '';
}
function barfblank() {
- p = document.createElement('p');
+ p = document.createElement('pre');
p.className = 'blank';
- p.innerHTML = '<br />';
+ p.innerHTML = '\n';
ioconsole.appendChild(p);
}
@@ -148,14 +148,10 @@ document.addEventListener('DOMContentLoaded', function() {
return '';
}
- nl = false;
- if (txt.charAt(0) == '\n')
- nl = true;
-
if (!p)
barfblank();
- if (!p || nl) {
- p = document.createElement('p');
+ if (!p) {
+ p = document.createElement('pre');
p.className = type;
ioconsole.appendChild(p);