remix
This commit is contained in:
parent
aaee08d4f3
commit
560bd05da6
|
|
@ -15,17 +15,18 @@
|
|||
logger.debug("'CANCEL SHUTDOWN' selected")
|
||||
context.JK.Banner.hide();
|
||||
}},
|
||||
{name: 'COMPLETELY SHUT DOWN', click: function() {
|
||||
logger.debug("'COMPLETELY SHUT DOWN THE APP' selected")
|
||||
context.jamClient.ShutdownApplication()
|
||||
}},
|
||||
{name: 'RUN IN BACKGROUND', click: function() {
|
||||
{name: 'SYNC THEN SHUT DOWN', click: function() {
|
||||
logger.debug("'LET APP RUN IN BACKGROUND' selected")
|
||||
context.jamClient.RegisterQuitCallback("window.JK.ShutdownDialogCallback");
|
||||
context.jamClient.LeaveSessionAndMinimize();
|
||||
context.JK.Banner.hide();
|
||||
}
|
||||
}
|
||||
},
|
||||
{name: 'SHUT DOWN', click: function() {
|
||||
logger.debug("'COMPLETELY SHUT DOWN THE APP' selected")
|
||||
context.jamClient.ShutdownApplication()
|
||||
}},
|
||||
|
||||
],
|
||||
html: $('#template-shutdown-prompt').html()});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -39,14 +39,14 @@ script type='text/template' id='template-app-in-read-only-volume'
|
|||
|
||||
script type='text/template' id='template-shutdown-prompt'
|
||||
.shutdown-prompt
|
||||
| You might consider leaving the application in the background for a couple of reasons:
|
||||
| You have two options when shutting down JamKazam:
|
||||
ul
|
||||
li
|
||||
span.definition Recordings
|
||||
= '- If you leave the app running after a session completes, any recordings that you and others have made during sessions can be mastered - i.e. uploaded, mixed on our servers, and downloaded back to your computer - so that you have high quality versions of your recordings available.'
|
||||
span.definition SHUT DOWN NOW
|
||||
= '- The application will close immediately.'
|
||||
li
|
||||
span.definition Friends
|
||||
= '- You can open the app and check your notifications from friends at any time.'
|
||||
span.definition SYNC THEN SHUT DOWN
|
||||
= '- Any pending recordings that you and others have made during sessions will be mastered - i.e. uploaded, mixed on our servers, and downloaded back to your computer - so that you have high quality versions of your recordings available. Once all recording synchronization is done, the application will shut down. This usually takes at most a few minutes.'
|
||||
|
||||
|
||||
script type='text/template' id='template-mixer-mode-change'
|
||||
|
|
|
|||
Loading…
Reference in New Issue