mirror of
https://github.com/photonstorm/phaser
synced 2025-02-17 06:28:30 +00:00
Removed webkit check since it is taken care of by polyfill
This commit is contained in:
parent
159ff0f2a2
commit
6fba90be74
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ var WebAudioSoundManager = new Class({
|
||||||
if (audioConfig && audioConfig.context) {
|
if (audioConfig && audioConfig.context) {
|
||||||
return audioConfig.context;
|
return audioConfig.context;
|
||||||
}
|
}
|
||||||
return new (window['AudioContext'] || window['webkitAudioContext'])();
|
return new AudioContext();
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
* Adds a new sound into the sound manager.
|
* Adds a new sound into the sound manager.
|
||||||
|
|
Loading…
Add table
Reference in a new issue