diff --git a/resources/static/shared/network.js b/resources/static/shared/network.js index 45f422fbe7aa32b59fddc09e9cdd636171efd798..c1a5abb631d4e75e8e8575bc251207f7d1bff0bf 100644 --- a/resources/static/shared/network.js +++ b/resources/static/shared/network.js @@ -639,7 +639,10 @@ BrowserID.Network = (function() { withContext(function() { try { // set a test cookie with a duration of 1 second. - // NOTE - The Android 3.3 default browser will still pass this. + // NOTE - The Android 3.3 and 4.0 default browsers will still pass + // this check. This causes the Android browsers to only display the + // cookies diabled error screen only after the user has entered and + // submitted input. // http://stackoverflow.com/questions/8509387/android-browser-not-respecting-cookies-disabled/9264996#9264996 document.cookie = "test=true; max-age=1"; var enabled = document.cookie.indexOf("test") > -1;