From 104d030ec438272bb288ed07ea19be93fc15201b Mon Sep 17 00:00:00 2001 From: Daniel Dourado Fernandes Date: Wed, 27 Dec 2023 16:25:40 -0300 Subject: [PATCH] Remove Tracking Pixel It's to ping home, probably done by the author for the purpose of statistics, to know how many projects are using Django Jet, and also to keep some control on who was paying or not paying for the commercial license. I think this ping.gif should be removed. Aditionally, the server where the image is located is not working, so this is taking 20 secods before the browser blocks the request, which might cause lots of different problems. --- jet/static/jet/js/src/layout-updaters/branding.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/jet/static/jet/js/src/layout-updaters/branding.js b/jet/static/jet/js/src/layout-updaters/branding.js index c148efe3..cda68304 100644 --- a/jet/static/jet/js/src/layout-updaters/branding.js +++ b/jet/static/jet/js/src/layout-updaters/branding.js @@ -25,7 +25,4 @@ $(document).ready(function() { $('#branding').each(function() { new BrandingUpdater($(this)).run(); }); - if ($('body.login').length != 0) { - $('').attr('src', '//jet.geex-arts.com/ping.gif'); - } });