fix bug when there are no cookies at all

svn: r10215

original commit: f7b146d8a0d7857dab141f45d14f919f922871b7
This commit is contained in:
Eli Barzilay 2008-06-11 05:53:52 +00:00
parent 2e2c690730
commit e813db05b7

View File

@ -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];