You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On desktop and mobile Safari (Mac OSX and iOS), the sounds never play and after debugging it was complaining about line 22 and 34 not having the correct parameter passed to them.
I was able to solve it by changing osc.start() and osc.stop() to their proper form osc.start(0) and osc.stop(0) – it looks like on Chrome they automatically assume 0 value, but not on Safari.
The text was updated successfully, but these errors were encountered:
On desktop and mobile Safari (Mac OSX and iOS), the sounds never play and after debugging it was complaining about line 22 and 34 not having the correct parameter passed to them.
I was able to solve it by changing
osc.start()
andosc.stop()
to their proper formosc.start(0)
andosc.stop(0)
– it looks like on Chrome they automatically assume0
value, but not on Safari.The text was updated successfully, but these errors were encountered: