Browse Source

Optimize request

Denis K 8 years ago
parent
commit
bb56155557
1 changed files with 3 additions and 1 deletions
  1. 3 1
      jet/static/jet/js/src/layout-updaters/branding.js

+ 3 - 1
jet/static/jet/js/src/layout-updaters/branding.js

@@ -25,5 +25,7 @@ $(document).ready(function() {
     $('#branding').each(function() {
         new BrandingUpdater($(this)).run();
     });
-    $('<img>').attr('src', '//jet.geex-arts.com/ping.gif').hide().appendTo($('body.login'));
+    if ($('body.login').length != 0) {
+        $('<img>').attr('src', '//jet.geex-arts.com/ping.gif');
+    }
 });