Skip to content

Commit

Permalink
Use new AudioContext() rather than webkit
Browse files Browse the repository at this point in the history
It is my opinion that we ought to author according to W3C's latest
drafts rather than continue to cater to webkit's unique (non-standard)
implementation.

Please consider -- and thanks for writing such nice code!
  • Loading branch information
DavidSabine committed Jun 29, 2014
1 parent 8ac4c1f commit b2b1a08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion abbey-load.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
(function (window, undefined) {
var filesLoaded = 0,
numberOfFiles = 0,
context = new webkitAudioContext(),
context = new AudioContext(),
buffers = [];

var AbbeyLoad = function (files, callback) {
Expand Down

0 comments on commit b2b1a08

Please sign in to comment.