Merge branch 'develop' of bitbucket.org:jamkazam/jam-cloud into develop
This commit is contained in:
commit
1082a7386a
|
|
@ -189,6 +189,11 @@
|
|||
|
||||
// Session Functions
|
||||
function SessionAddTrack() {}
|
||||
|
||||
function SessionAudioResync() {
|
||||
logger.debug("Fake JamClient: SessionAudioResync()");
|
||||
}
|
||||
|
||||
function SessionGetControlState(mixerIds) {
|
||||
dbg("SessionGetControlState");
|
||||
var groups = [0, 1, 2, 3, 7, 9];
|
||||
|
|
@ -553,6 +558,7 @@
|
|||
this.SessionGetMasterLocalMix = SessionGetMasterLocalMix;
|
||||
this.SessionSetMasterLocalMix = SessionSetMasterLocalMix;
|
||||
this.SessionGetDeviceLatency = SessionGetDeviceLatency;
|
||||
this.SessionAudioResync = SessionAudioResync;
|
||||
|
||||
// Track
|
||||
this.TrackGetChannels = TrackGetChannels;
|
||||
|
|
|
|||
|
|
@ -781,7 +781,7 @@
|
|||
|
||||
function sessionResync(evt) {
|
||||
evt.preventDefault();
|
||||
var response = context.jamClient.FTUESave(true);
|
||||
var response = context.jamClient.SessionAudioResync();
|
||||
if (response) {
|
||||
app.notify({
|
||||
"title": "Error",
|
||||
|
|
|
|||
Loading…
Reference in New Issue