diff options
author | Struan Donald <struan@exo.org.uk> | 2012-06-07 15:43:04 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-06-07 15:43:04 +0100 |
commit | c9f22d6fdb2091189cdbaf1f7e858b2809141d2c (patch) | |
tree | 44be8e81820d3d5381667e2ac67fc6bca6c8bcfa /www/js | |
parent | 246fc64960924593960aa48430e61819292240cc (diff) |
android emulator caches gets so add time to end to stop this
Diffstat (limited to 'www/js')
-rw-r--r-- | www/js/mobile.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/js/mobile.js b/www/js/mobile.js index 0d939fe..26480a1 100644 --- a/www/js/mobile.js +++ b/www/js/mobile.js @@ -339,7 +339,7 @@ function display_signed_out_msg() { function sign_out() { jQuery.ajax( { - url: CONFIG.FMS_URL + "auth/ajax/sign_out", + url: CONFIG.FMS_URL + "auth/ajax/sign_out?" + new Date().getTime(), type: 'GET', success: function(data) { if ( data.signed_out ) { @@ -353,7 +353,7 @@ function sign_out() { function sign_out_around() { jQuery.ajax( { - url: CONFIG.FMS_URL + "auth/ajax/sign_out", + url: CONFIG.FMS_URL + "auth/ajax/sign_out?" + new Date().getTime(), type: 'GET', success: function(data) { $('#user-meta').html(''); @@ -379,7 +379,7 @@ function check_auth() { sign_out_function = sign_out_around; } jQuery.ajax( { - url: CONFIG.FMS_URL + "auth/ajax/check_auth", + url: CONFIG.FMS_URL + "auth/ajax/check_auth?" + new Date().getTime() , type: 'GET', statusCode: { 200: function(data) { |