1
0
Fork 0
mirror of https://github.com/infinum/cookies_eu synced 2023-03-27 23:21:16 -04:00

cookies now have expiration of one year

This commit is contained in:
Stjepan Hadjic 2013-07-23 16:47:36 +02:00
parent 64a9dd87b9
commit 91ac7241ba
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@
$(document).ready( function(){
$('.cookies-eu-ok').click(function(e){
e.preventDefault();
$.cookie('cookie_eu_consented', 'true', { path: '/'});
$.cookie('cookie_eu_consented', 'true', { path: '/', expires: 365 });
$('.cookies-eu').remove();
});
});

View file

@ -1,3 +1,3 @@
module CookiesEu
VERSION = "1.0.8"
VERSION = "1.0.9"
end