|
@@ -37,7 +37,8 @@
|
37
|
37
|
var scrollAmount = window.innerHeight / 7; // Amount to scroll per interval
|
38
|
38
|
|
39
|
39
|
function playAudio() {
|
40
|
|
- if (!hasPlayed && scrollCount >= maxScrolls) {
|
|
40
|
+ if (!hasPlayed) {
|
|
41
|
+ console.log('play')
|
41
|
42
|
var playPromise = audioElement.play();
|
42
|
43
|
|
43
|
44
|
if (playPromise !== undefined) {
|
|
@@ -54,6 +55,7 @@
|
54
|
55
|
|
55
|
56
|
function smoothScroll() {
|
56
|
57
|
if (!hasPlayed) {
|
|
58
|
+ playAudio();
|
57
|
59
|
scrollCount++;
|
58
|
60
|
if (scrollCount >= maxScrolls) {
|
59
|
61
|
playAudio();
|
|
@@ -66,6 +68,7 @@
|
66
|
68
|
|
67
|
69
|
function playOnly() {
|
68
|
70
|
if (!hasPlayed) {
|
|
71
|
+ playAudio();
|
69
|
72
|
scrollCount++;
|
70
|
73
|
if (scrollCount >= maxScrolls) {
|
71
|
74
|
playAudio();
|