Update 404.md

This commit is contained in:
John Mulhausen 2016-10-07 11:42:16 -07:00 committed by GitHub
parent 4ab65ba3a4
commit 853b659f64
1 changed files with 2 additions and 2 deletions

4
404.md
View File

@ -52,10 +52,10 @@ function doFwd() {
}{% endfor %}
if (gonnaFwd) {
console.log("Forwarding to: " + newURL);
//window.location.replace(newURL);
window.location.replace(newURL);
document.write('<meta http-equiv="refresh" content="0; url=' + newURL + '">')
} else {
//window.location.replace("/sorry/#" + forwardingURL);
window.location.replace("/sorry/#" + forwardingURL);
document.write('<meta http-equiv="refresh" content="0; url=/sorry/#' + forwardingURL + '">')
}
}