Fix end tag in HTML fragment. (#355)

This commit is contained in:
Daniel Dawson
2018-04-23 14:32:28 -07:00
committed by wbamberg
parent c11a9dd78d
commit 8694314d5a

View File

@@ -4,7 +4,7 @@ const hostsInput = document.querySelector("#hosts");
const codeInput = document.querySelector("#code");
const defaultHosts = "*://*.org/*";
const defaultCode = "document.body.innerHTML = '<h1>This page has been eaten<h1>'";
const defaultCode = "document.body.innerHTML = '<h1>This page has been eaten</h1>'";
hostsInput.value = defaultHosts;
codeInput.value = defaultCode;