diff options
Diffstat (limited to 'www/js/mobile.js')
-rw-r--r-- | www/js/mobile.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/www/js/mobile.js b/www/js/mobile.js index d3a3904..d27f1e5 100644 --- a/www/js/mobile.js +++ b/www/js/mobile.js @@ -690,6 +690,10 @@ function forget_user_details() { delete localStorage.username; delete localStorage.password; localStorage.signed_out = 1; + jQuery.ajax( { + url: CONFIG.FMS_URL + "auth/ajax/sign_out", + type: 'POST' + } ); display_account_page(); } |