aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorcel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519>2017-04-12 23:26:40 -0700
committercel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519>2017-04-12 23:26:40 -0700
commit69c7116d0e1b23d9643e2dc4821862c17a5d3c8b (patch)
tree906797f8c174a357cd81baeeab04d01c57e3af35 /lib
parentc41ba732c4b497eff59818b89bec7b123a8f398f (diff)
parentc7345ec6d7608a2a4f00796cf01341b6db5d5a27 (diff)
downloadpatchfoo-69c7116d0e1b23d9643e2dc4821862c17a5d3c8b.tar.gz
patchfoo-69c7116d0e1b23d9643e2dc4821862c17a5d3c8b.zip
Merge branch 'noffle/hermie'
Diffstat (limited to 'lib')
-rw-r--r--lib/util.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.js b/lib/util.js
index d0ab97a..0a6356c 100644
--- a/lib/util.js
+++ b/lib/util.js
@@ -38,7 +38,7 @@ u.toHTML = function (el) {
return h('div', el).innerHTML
}
var html = el.outerHTML || String(el)
- if (el.nodeName === 'html') html = '<!doctype html>' + html + '\n'
+ if (el.nodeName === 'html') html = '<!doctype html><link rel="icon" href="static/hermie.ico" type="image/x-icon"/>' + html + '\n'
return html
}