From f8e63e2c9c75442aae7e7b74da17003e231738b3 Mon Sep 17 00:00:00 2001 From: Nathan Kinsinger Date: Wed, 1 Sep 2010 23:06:56 -0600 Subject: [PATCH] Remove the isReachable test for gravatar.com If there is no network connection then the reachability test will take the system default time (90 seconds I think?) to time out. During this time the UI is blocked (spinning beach ball). The test was being done even if gravatar use was turned off. It doesn't really matter if the site is unreachable, the image will not load but that's not a big deal. --- html/views/history/history.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/html/views/history/history.js b/html/views/history/history.js index c90c0c2..ca970fb 100644 --- a/html/views/history/history.js +++ b/html/views/history/history.js @@ -129,9 +129,6 @@ var gistie = function() { } var setGravatar = function(email, image) { - if (Controller && !Controller.isReachable_("www.gravatar.com")) - return; - if(Controller && !Controller.isFeatureEnabled_("gravatar")) { image.src = ""; return;