]> git.openstreetmap.org Git - osqa.git/commitdiff
moved the google analytics code to the head of the base.html file.
authorqw3rty <qw3rty@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Tue, 18 May 2010 20:44:31 +0000 (20:44 +0000)
committerqw3rty <qw3rty@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Tue, 18 May 2010 20:44:31 +0000 (20:44 +0000)
git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@303 0cfe37f9-358a-4d5e-be75-b63607b5c754

forum/skins/default/templates/base.html
forum/skins/default/templates/footer.html

index 03234eb0bbe99ea3c2bf77cc1508242a55ca99f4..80eb598c9cca38bbb7e2373445d219ca2d53f5b4 100644 (file)
         {% block forejs %}{% endblock %}
 
         <link rel="search" type="application/opensearchdescription+xml" href="{% url opensearch %}" title="{{ settings.APP_SHORT_NAME }} Search" />
+        
+        {% if settings.GOOGLE_ANALYTICS_KEY %}
+            <script type="text/javascript">
+                var _gaq = _gaq || [];
+                _gaq.push(['_setAccount', '{{ settings.GOOGLE_ANALYTICS_KEY }}']);
+                _gaq.push(['_trackPageview']);
+
+                (function() {
+                    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+                    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+                    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+                })();
+            </script>
+        {% endif %}
     </head>
     <body>
         <div class="notify" style="display:none">
index e8af78f710530824f337719d9515eab3d3e37ff8..1650315ddc60acf4c5f4e3f6ab4ff6ebe3f0a597 100644 (file)
                  </a>
                 </div>
        </div>
-    {% if settings.GOOGLE_ANALYTICS_KEY %}
-        <script type="text/javascript">
-
-          var _gaq = _gaq || [];
-          _gaq.push(['_setAccount', '{{ settings.GOOGLE_ANALYTICS_KEY }}']);
-          _gaq.push(['_trackPageview']);
-
-          (function() {
-            var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
-            ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
-            var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
-          })();
-        </script>
-    {% endif %}