From 34594eb88b7f32dc6b59b78ebf7d75d0a25f918a Mon Sep 17 00:00:00 2001 From: Mike Brousseau Date: Thu, 8 Nov 2012 13:47:21 -0500 Subject: [PATCH] Update src/static/js/pad.js Check if the browser is IE and if so output the entire path via document.location over document.location.pathname to the cookie creation in createCookie() --- src/static/js/pad.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/static/js/pad.js b/src/static/js/pad.js index 89777040..c55f8dfe 100644 --- a/src/static/js/pad.js +++ b/src/static/js/pad.js @@ -64,7 +64,13 @@ function createCookie(name, value, days, path) if(!path) path = "/"; - document.cookie = name + "=" + value + expires + "; path=" + path; + //Check if the browser is IE and if so make sure the full path is set in the cookie + if(navigator.appName=='Microsoft Internet Explorer'){ + document.cookie = name + "=" + value + expires + "; path="+document.location; + } + else{ + document.cookie = name + "=" + value + expires + "; path=" + path; + } } function readCookie(name)