fix bug when there are no cookies at all
svn: r10215 original commit: f7b146d8a0d7857dab141f45d14f919f922871b7
This commit is contained in:
parent
2e2c690730
commit
e813db05b7
|
@ -1,7 +1,7 @@
|
|||
// Common functionality for PLT documentation pages
|
||||
|
||||
function GetCookie(key, def) {
|
||||
if (document.cookie.length <= 0) return null;
|
||||
if (document.cookie.length <= 0) return def;
|
||||
var cookiestrs = document.cookie.split(/; */);
|
||||
for (var i in cookiestrs) {
|
||||
var cur = cookiestrs[i];
|
||||
|
|
Loading…
Reference in New Issue
Block a user