Skip to content

Commit ff8a138

Browse files
committed
jshint fix
1 parent 5cd4225 commit ff8a138

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

src/sound/SoundManager.js

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -163,13 +163,12 @@ Phaser.SoundManager.prototype = {
163163
{
164164
if (!!window['AudioContext'])
165165
{
166-
try {
167-
this.context = new window['AudioContext']();
168-
} catch (error) {
169-
this.context = null;
170-
this.usingWebAudio = false;
171-
this.noAudio = true;
172-
}
166+
try {
167+
this.context = new window['AudioContext']();
168+
} catch (error) {
169+
this.context = null;
170+
this.usingWebAudio = false;
171+
this.noAudio = true;
173172
}
174173
}
175174
else if (!!window['webkitAudioContext'])

0 commit comments

Comments
 (0)