8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 181d1c9 commit ff0bc12Copy full SHA for ff0bc12
js/cookie-notify.js
@@ -13,12 +13,11 @@ $(document).ready(function() {
13
var agreeToUseCookie = matches && decodeURIComponent(matches[1]);
14
if (!agreeToUseCookie) {
15
$('body').append(template);
16
- template.hide().fadeIn(300);
17
$('.agree-using-cookies').on('click', function() {
18
var date = new Date();
19
date.setFullYear(date.getFullYear() + 2); // + 2 years
20
document.cookie = 'agree_to_use=' + Date.now() + '; path=/; expires=' + date.toUTCString();
21
- $('#cookie-notification').fadeOut(500).hide();
+ $('#cookie-notification').hide();
22
return false;
23
});
24
}
0 commit comments