VRFS-2893 added SaveSettings bridge call
This commit is contained in:
parent
e882bb272c
commit
711fd1984b
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue