Skip to content

Commit 2a054c2

Browse files
committed
adding longer timeout for download redirect, hoping to address processing/p5.js#4254
1 parent 531c1b7 commit 2a054c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/templates/pages/download/index.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ slug: download/
126126
if ($(this).hasClass('p5_link')) {
127127
e.preventDefault();
128128
window.location = $(this).attr('href');
129-
setTimeout( function() { window.location = 'support.html'; }, 2000);
129+
setTimeout( function() { window.location = 'support.html'; }, 10000);
130130
} else {
131-
setTimeout( function() { window.location = 'support.html'; }, 100);
131+
setTimeout( function() { window.location = 'support.html'; }, 1000);
132132
}
133133
134134
});

0 commit comments

Comments
 (0)