Skip to content

Commit f3f8f11

Browse files
authored
Merge pull request #885 from binford2k/set_cookie_lifetime
Set cookie lifetime
2 parents 5b54649 + f6448ff commit f3f8f11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public/js/showoff.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -675,12 +675,12 @@ function showTour(name, record) {
675675
if(record) {
676676
clientTours.push(name);
677677
document.cookieHash['tours'] = clientTours;
678-
document.cookie = "tours="+JSON.stringify(clientTours);
678+
document.cookie = "tours="+JSON.stringify(clientTours)+"; max-age=31536000; path=/;";
679679
}
680680

681681
// this keeps track of the version of the presenter tour we've seen
682682
if(name == 'showoff:presenter:auto') {
683-
document.cookie = "tourVersion="+tourVersion;
683+
document.cookie = "tourVersion="+tourVersion+"; max-age=31536000; path=/;";
684684
document.cookieHash['tourVersion'] = tourVersion;
685685

686686
// we don't need this anymore; let's save a byte or three

0 commit comments

Comments
 (0)