-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsite.js
48 lines (42 loc) · 1.11 KB
/
site.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
/*
* [ 0x19e Networks ]
*
*/
var supportedBrowser = false;
var oldIE = false;
function onDocumentLoaded() {
$(document).ready(function() {
if ($('html').is('.ie6, .ie7, .ie8')) {
oldIE = true;
}
if( navigator.userAgent.toLowerCase().indexOf('firefox') > -1 ){
supportedBrowser = true;
}
if( navigator.userAgent.toLowerCase().indexOf('chrome') > -1 ){
supportedBrowser = true;
}
/* TODO */
});
function getCookie(cname) {
var name = cname + "=";
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);
if (c.indexOf(name) == 0) return c.substring(name.length, c.length);
}
return "";
}
function setCookie(cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
var expires = "expires="+d.toUTCString();
document.cookie = cname + "=" + cvalue + "; " + expires;
}
function checkCookie(cname) {
var pass = getCookie(cname);
if (pass == "1") {
return true;
}
return false;
}