use localStorage for user-doc redirect

Chrome doesn't allow cookies for local files, so try
localStorage (and fall back to cookies where localStorage
is unavailable)

original commit: 2312e3b9e6feb4427f582a9a4c6132a8d67cb8f1
This commit is contained in:
Matthew Flatt 2013-11-27 10:04:17 -07:00
parent f45683c022
commit 685fdc078d

View File

@ -53,7 +53,14 @@ function MergePageArgsIntoLink(a) {
// Cookies -------------------------------------------------------------------- // Cookies --------------------------------------------------------------------
// Actually, try localStorage (a la HTML 5), first.
function GetCookie(key, def) { function GetCookie(key, def) {
try {
var v = localStorage[key];
if (!v) v = def;
return v;
} catch (e) {
var i, cookiestrs; var i, cookiestrs;
try { try {
if (document.cookie.length <= 0) return def; if (document.cookie.length <= 0) return def;
@ -67,8 +74,12 @@ function GetCookie(key, def) {
} }
return def; return def;
} }
}
function SetCookie(key, val) { function SetCookie(key, val) {
try {
localStorage[key] = val;
} catch(e) {
var d = new Date(); var d = new Date();
d.setTime(d.getTime()+(365*24*60*60*1000)); d.setTime(d.getTime()+(365*24*60*60*1000));
try { try {
@ -76,6 +87,7 @@ function SetCookie(key, val) {
key + "=" + escape(val) + "; expires="+ d.toGMTString() + "; path=/"; key + "=" + escape(val) + "; expires="+ d.toGMTString() + "; path=/";
} catch (e) {} } catch (e) {}
} }
}
// note that this always stores a directory name, ending with a "/" // note that this always stores a directory name, ending with a "/"
function SetPLTRoot(ver, relative) { function SetPLTRoot(ver, relative) {