Skip to content

Commit 1c21a09

Browse files
Added resume method docs
1 parent 311a18b commit 1c21a09

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/sound/html5/HTML5AudioSound.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,12 @@ var HTML5AudioSound = new Class({
107107
this.emit('pause', this);
108108
return true;
109109
},
110+
/**
111+
* Resumes the sound.
112+
*
113+
* @method Phaser.Sound.HTML5AudioSound#resume
114+
* @returns {boolean} Whether the sound was resumed successfully.
115+
*/
110116
resume: function () {
111117
if (this.manager.isLocked(this, 'resume')) {
112118
return false;

0 commit comments

Comments
 (0)