We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84a2039 commit b9b5489Copy full SHA for b9b5489
1 file changed
src/sound/html5/HTML5AudioSoundManager.js
@@ -46,6 +46,14 @@ var HTML5AudioSoundManager = new Class({
46
* @default []
47
*/
48
this.onBlurPausedSounds = [];
49
+ /**
50
+ * HTML5 Audio streams cannot be loaded unless triggered by explicit user interaction, such as a tap.
51
+ * True if the audio system is currently locked awaiting user interaction.
52
+ *
53
+ * @private
54
+ * @property {boolean} touchLocked
55
+ */
56
+ this.touchLocked = 'ontouchstart' in window;
57
/**
58
* Property that actually holds the value of global mute
59
* for HTML5 Audio sound manager implementation.
0 commit comments