We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9b5489 commit f52cfeeCopy full SHA for f52cfee
1 file changed
src/sound/html5/HTML5AudioSoundManager.js
@@ -54,6 +54,15 @@ var HTML5AudioSoundManager = new Class({
54
* @property {boolean} touchLocked
55
*/
56
this.touchLocked = 'ontouchstart' in window;
57
+ /**
58
+ * Flag used for indicating when the audio has been unlocked,
59
+ * if there ever was a need for it.
60
+ *
61
+ * @private
62
+ * @type {boolean}
63
+ * @default false
64
+ */
65
+ this.touchUnlocked = false;
66
/**
67
* Property that actually holds the value of global mute
68
* for HTML5 Audio sound manager implementation.
0 commit comments