소스 검색

Don't hardcode the path - use window.location.pathname.

pull/24/head
Ben Kurtovic 12 년 전
부모
커밋
48d9fc4452
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      static/js/copyvios.js

+ 2
- 1
static/js/copyvios.js 파일 보기

@@ -16,6 +16,7 @@ function get_cookie(name) {
}

function set_cookie(name, value, days) {
var path = window.location.pathname.split("/", 2)[1];
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
@@ -24,7 +25,7 @@ function set_cookie(name, value, days) {
else {
var expires = "";
}
document.cookie = name + "=" + value + expires + "; path=/~earwig";
document.cookie = name + "=" + value + expires + "; path=/" + path;
}

function delete_cookie(name) {


불러오는 중...
취소
저장