get_cookie 함수에 unescape 추가

This commit is contained in:
chicpro
2015-01-07 13:58:34 +09:00
parent 8bd4f8b23c
commit bb4dff1caa

View File

@ -187,7 +187,7 @@ function get_cookie(name)
if(end < start) if(end < start)
end = document.cookie.length; end = document.cookie.length;
return document.cookie.substring(start, end); return unescape(document.cookie.substring(start, end));
} }
return ""; return "";
} }