mirror of
https://github.com/jiojciojsioe3/a3cjroijsiojiorj.git
synced 2024-11-14 23:11:51 +08:00
Merge pull request #44 from LoveEevee/fix-audioctx-safari
SoundBuffer: Fix AudioContext on Safari again
This commit is contained in:
commit
b454059c07
@ -3,7 +3,7 @@
|
||||
var AudioContext = window.AudioContext || window.webkitAudioContext
|
||||
this.context = new AudioContext()
|
||||
pageEvents.once(window, "click").then(() => {
|
||||
if(this.context.state == "suspended"){
|
||||
if(this.context.state === "suspended"){
|
||||
this.context.resume()
|
||||
}
|
||||
})
|
||||
@ -12,7 +12,9 @@
|
||||
return loader.ajax(url, request => {
|
||||
request.responseType = "arraybuffer"
|
||||
}).then(response => {
|
||||
return this.context.decodeAudioData(response)
|
||||
return new Promise((resolve, reject) => {
|
||||
return this.context.decodeAudioData(response, resolve, reject)
|
||||
})
|
||||
}).then(buffer => {
|
||||
return new Sound(gain || {soundBuffer: this}, buffer)
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user