AudioContext-MonkeyPatch icon indicating copy to clipboard operation
AudioContext-MonkeyPatch copied to clipboard

Monkeypatch to use proper AudioContext naming on prefixed/deprecated named systems.

Results 4 AudioContext-MonkeyPatch issues
Sort by recently updated
recently updated
newest added

Following the recommendation from this PSA on an upcoming Web Audio spec change https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/QOR76GjwrkA From what I can tell, this won't be an issue for users of the AudioContext MonkeyPatch....

The following code will throw on iOS 9: http://requirebin.com/?gist=f20e6ed34715e99a6fe4 The important part is ~ line 25: ``` js sample.start(undefined); ``` Calling `sample.start()` does NOT throw in iOS9. Why does this...

This change makes no functional changes, it just makes an alias so that compilers can shrink it down better.

Would it be possible to add support for OfflineAudioContext()/webkitOfflineAudioContext()?