浏览代码

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) {


正在加载...
取消
保存