VRFS-2893 added SaveSettings bridge call

This commit is contained in:
Jonathan Kolyer 2015-04-13 02:07:50 +00:00
parent e882bb272c
commit 711fd1984b
2 changed files with 4 additions and 2 deletions

View File

@ -21,6 +21,7 @@
var autostart = $autoStartField.find('.icheckbox_minimal').is('.checked');
context.jamClient.SetAutoStart(autostart);
app.layout.closeDialog('client-preferences-dialog')
context.jamClient.SaveSettings();
return false;
})
}
@ -54,4 +55,4 @@
this.initialize = initialize;
}
})(window, jQuery);
})(window, jQuery);

View File

@ -939,6 +939,7 @@
function LeaveSessionAndMinimize() {}
function SetAutoStart() {}
function GetAutoStart() { return true; }
function SaveSettings() {}
// Javascript Bridge seems to camel-case
// Set the instance functions:
@ -1179,4 +1180,4 @@
this.clientID = "devtester";
};
})(window,jQuery);
})(window,jQuery);