Setted the 'clippy is annoying' cookie for 20 years

This commit is contained in:
mdtrooper 2014-10-02 13:24:16 +02:00
parent 6fa2cab7c6
commit 7b330b2cc5
1 changed files with 11 additions and 3 deletions

View File

@ -146,14 +146,22 @@ function clippy_start_page_homepage() {
} }
function set_clippy_annoying() { function set_clippy_annoying() {
checked = $('input[name=\'clippy_is_annoying\']').is(':checked'); var now = new Date();
var time = now.getTime();
var expireTime = time + 3600000 * 24 * 360 * 20;
now.setTime(expireTime);
checked = $('input[name=\'clippy_is_annoying\']')
.is(':checked');
//intro_homepage.exit(); //intro_homepage.exit();
if (checked) { if (checked) {
document.cookie = 'clippy_is_annoying=1'; document.cookie = 'clippy_is_annoying=1;expires=' +
now.toGMTString() + ';';
} }
else { else {
document.cookie = 'clippy_is_annoying=0'; document.cookie = 'clippy_is_annoying=0;expires=' +
now.toGMTString() + ';';
} }
} }