Skip to content

Commit

Permalink
lichen-community-systemsgh-173: Fixes initialization strategy for rec…
Browse files Browse the repository at this point in the history
…ent versions of iOS.
  • Loading branch information
colinbdclark committed May 2, 2016
1 parent 381ff20 commit 543b339
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 13 deletions.
5 changes: 3 additions & 2 deletions dist/flocking-all.js
Expand Up @@ -26843,7 +26843,9 @@ var fluid = fluid || require("infusion"),
priority: "last",
funcName: "flock.webAudio.outputManager.iOSStart",
args: [
"{that}", "{audioSystem}.context", "{scriptProcessor}.node"
"{that}",
"{audioSystem}.context",
"{nativeNodeManager}.scriptProcessor.node"
]
}
],
Expand Down Expand Up @@ -26951,7 +26953,6 @@ var fluid = fluid || require("infusion"),
var s = ctx.createBufferSource();
s.connect(jsNode);
s.start(0);
s.stop(0);
s.disconnect(0);
that.applier.change("shouldInitIOS", false);
}
Expand Down
6 changes: 3 additions & 3 deletions dist/flocking-all.min.js

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions dist/flocking-base.js
Expand Up @@ -8135,7 +8135,9 @@ var fluid = fluid || require("infusion"),
priority: "last",
funcName: "flock.webAudio.outputManager.iOSStart",
args: [
"{that}", "{audioSystem}.context", "{scriptProcessor}.node"
"{that}",
"{audioSystem}.context",
"{nativeNodeManager}.scriptProcessor.node"
]
}
],
Expand Down Expand Up @@ -8243,7 +8245,6 @@ var fluid = fluid || require("infusion"),
var s = ctx.createBufferSource();
s.connect(jsNode);
s.start(0);
s.stop(0);
s.disconnect(0);
that.applier.change("shouldInitIOS", false);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/flocking-base.min.js

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions dist/flocking-no-jquery.js
Expand Up @@ -16665,7 +16665,9 @@ var fluid = fluid || require("infusion"),
priority: "last",
funcName: "flock.webAudio.outputManager.iOSStart",
args: [
"{that}", "{audioSystem}.context", "{scriptProcessor}.node"
"{that}",
"{audioSystem}.context",
"{nativeNodeManager}.scriptProcessor.node"
]
}
],
Expand Down Expand Up @@ -16773,7 +16775,6 @@ var fluid = fluid || require("infusion"),
var s = ctx.createBufferSource();
s.connect(jsNode);
s.start(0);
s.stop(0);
s.disconnect(0);
that.applier.change("shouldInitIOS", false);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/flocking-no-jquery.min.js

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions src/web/output-manager.js
Expand Up @@ -68,7 +68,9 @@ var fluid = fluid || require("infusion"),
priority: "last",
funcName: "flock.webAudio.outputManager.iOSStart",
args: [
"{that}", "{audioSystem}.context", "{scriptProcessor}.node"
"{that}",
"{audioSystem}.context",
"{nativeNodeManager}.scriptProcessor.node"
]
}
],
Expand Down Expand Up @@ -176,7 +178,6 @@ var fluid = fluid || require("infusion"),
var s = ctx.createBufferSource();
s.connect(jsNode);
s.start(0);
s.stop(0);
s.disconnect(0);
that.applier.change("shouldInitIOS", false);
}
Expand Down

0 comments on commit 543b339

Please sign in to comment.