diff --git a/code/send_request.js b/code/send_request.js index 7bcd825c..c313c8cb 100644 --- a/code/send_request.js +++ b/code/send_request.js @@ -100,7 +100,13 @@ window.outOfDateUserPrompt = function() +'
If you have just reloaded the page, then an old version of the standard site script is cached somewhere.' +'In this case, try clearing your cache, or waiting 15-30 minutes for the stale data to expire.
', buttons: { - 'RELOAD': function() { window.location.reload(); } + 'RELOAD': function() { + if (typeof android !== 'undefined' && android && android.reloadIITC()) { + android.reloadIITC(); + } else { + window.location.reload(); + } + } }, close: function(event, ui) { delete window.blockOutOfDateRequests;