From f9dc08d830114e239374c883946320aa5e00cdd3 Mon Sep 17 00:00:00 2001 From: John Mulhausen Date: Wed, 5 Oct 2016 17:33:14 -0700 Subject: [PATCH] Fix for fwding --- 404.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/404.md b/404.md index eda26d64ea..09ec7fc710 100644 --- a/404.md +++ b/404.md @@ -60,11 +60,11 @@ function doFwd() { }{% endfor %} if (gonnaFwd) { console.log("Forwarding to: " + newURL); - //window.location.replace(newURL); - //document.write('') + window.location.replace(newURL); + document.write('') } else { - //window.location.replace("/sorry/#" + forwardingURL); - //document.write('') + window.location.replace("/sorry/#" + forwardingURL); + document.write('') } } window.onload = doFwd;