We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5b54649 + f6448ff commit f3f8f11Copy full SHA for f3f8f11
public/js/showoff.js
@@ -675,12 +675,12 @@ function showTour(name, record) {
675
if(record) {
676
clientTours.push(name);
677
document.cookieHash['tours'] = clientTours;
678
- document.cookie = "tours="+JSON.stringify(clientTours);
+ document.cookie = "tours="+JSON.stringify(clientTours)+"; max-age=31536000; path=/;";
679
}
680
681
// this keeps track of the version of the presenter tour we've seen
682
if(name == 'showoff:presenter:auto') {
683
- document.cookie = "tourVersion="+tourVersion;
+ document.cookie = "tourVersion="+tourVersion+"; max-age=31536000; path=/;";
684
document.cookieHash['tourVersion'] = tourVersion;
685
686
// we don't need this anymore; let's save a byte or three
0 commit comments