mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 05:03:37 +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) {
|
||||
return audioConfig.context;
|
||||
}
|
||||
return new (window['AudioContext'] || window['webkitAudioContext'])();
|
||||
return new AudioContext();
|
||||
},
|
||||
/**
|
||||
* Adds a new sound into the sound manager.
|
||||
|
|
Loading…
Reference in a new issue