0.899
This commit is contained in:
29
Source/SITE/JS/cookies.js
Normal file
29
Source/SITE/JS/cookies.js
Normal file
@@ -0,0 +1,29 @@
|
||||
function setCookie(name,value,days) {
|
||||
var expires = "";
|
||||
if (days) {
|
||||
var date = new Date();
|
||||
date.setTime(date.getTime() + (days*24*60*60*1000));
|
||||
expires = "; expires=" + date.toUTCString();
|
||||
}
|
||||
document.cookie = name + "=" + (value || "") + expires + "; path=/";
|
||||
}
|
||||
|
||||
function getCookie(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;
|
||||
}
|
||||
|
||||
function eraseCookie(name) {
|
||||
document.cookie = name+'=; Max-Age=-99999999;';
|
||||
}
|
||||
|
||||
var show = getCookie('teracookies');
|
||||
if (!show) {
|
||||
setTimeout("document.getElementById('cookiesmessage').style.display = 'block';", 3000);
|
||||
}
|
||||
4
Source/SITE/JS/web-addon.js
Normal file
4
Source/SITE/JS/web-addon.js
Normal file
@@ -0,0 +1,4 @@
|
||||
HostingCaller.TestAddon=function (Params)
|
||||
{
|
||||
return "Test. Your params:"+JSON.stringify(Params);
|
||||
}
|
||||
Reference in New Issue
Block a user