From 5610b6f0b46e755ddff69b0192e3d4060ffadc97 Mon Sep 17 00:00:00 2001 From: calzoneman Date: Wed, 11 Dec 2013 19:53:53 -0600 Subject: [PATCH] Fix stupid chrome behavior on index page --- www/index.html | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/www/index.html b/www/index.html index 9be112a2..598f2e91 100644 --- a/www/index.html +++ b/www/index.html @@ -92,7 +92,6 @@ @@ -182,8 +181,7 @@ } } if(params["channel"] && params["channel"].match(/^[a-zA-Z0-9]+$/)) { - var host = location.protocol + "//" + location.host + "/"; - document.location = host + "r/" + params["channel"]; + document.location = "r/" + params["channel"]; }