Skip to content

Commit ede81f2

Browse files
Added destroy method
1 parent 0223019 commit ede81f2

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/sound/html5/HTML5AudioSound.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ var HTML5AudioSound = new Class({
6565
},
6666
update: function (time, delta) {
6767

68+
},
69+
destroy: function () {
70+
BaseSound.prototype.destroy.call(this);
71+
// TODO release all HTML5 Audio tag related stuff
6872
}
6973
});
7074
module.exports = HTML5AudioSound;

0 commit comments

Comments
 (0)