-
Notifications
You must be signed in to change notification settings - Fork 7
/
cookies.js
executable file
·53 lines (46 loc) · 1.33 KB
/
cookies.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// adapted from: www.quirksmode.org/js/cookies.html
//adapted from: http://mccormick.cx/projects/jsGameSoup/
define(['./jo'],function(jo){
/**
@namespace cookie management methods.
*/
jo.cookies = {};
/**
@method set the value of a cookie for a certain number of days.
@param name is the key of the cookie name.
@param value is what to set the cookie to.
@param days is the number of days to set the cookie for from today.
*/
jo.cookies.setCookie = function(name, value, days) {
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 2000));
var expires = "; expires =" + date.toGMTString();
} else {
var expires = "";
}
document.cookie = name + "=" + value + expires + "; path=/";
};
/**
@method get the value of a cookie.
@param name of the cookie to fetch.
*/
jo.cookies.getCookie = function(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(";");
for (var i=0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') c = c.substring(1, c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
}
return null;
};
/**
@method unset, or delete a particular cookie.
@param name of the cookie to delete.
*/
jo.cookies.delCookie = function(name) {
setCookie(name, "", -1);
};
return jo.cookies;
});