mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-14 02:26:58 -07:00
Add feedback message for saving new Plex token
This commit is contained in:
parent
1be7375a49
commit
de8fa32557
1 changed files with 3 additions and 1 deletions
|
@ -2746,7 +2746,9 @@ $(document).ready(function() {
|
|||
$("#pms-token-status").html('<i class="fa fa-refresh fa-spin"></i> Waiting for authentication...').fadeIn('fast');
|
||||
}
|
||||
function OAuthSuccessCallback(authToken) {
|
||||
$.post('save_pms_token', { token: authToken });
|
||||
$.post('save_pms_token', { token: authToken }, function() {
|
||||
showMsg('<i class="fa fa-check"></i> Saved new Plex.tv token.', false, true, 5000);
|
||||
});
|
||||
$("#pms-token-status").html('<i class="fa fa-check"></i> Authentication successful.').fadeIn('fast');
|
||||
$("#token_error_bar").hide();
|
||||
getServerOptions(authToken);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue