Update analitics tracking code.

This commit is contained in:
Paulo Gustavo Veiga 2014-04-18 19:13:55 -03:00
parent 64c7198d50
commit c854c1b377

View File

@ -1,19 +1,15 @@
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<c:if test="${requestScope['google.analytics.enabled']}"> <c:if test="${requestScope['google.analytics.enabled']}">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '${requestScope['google.analytics.account']}']);
_gaq.push(['_setDomainName', 'wisemapping.com']);
_gaq.push(['_trackPageview']);
(function () { <script>
var ga = document.createElement('script'); (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
ga.type = 'text/javascript'; (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
ga.async = true; m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s); ga('create', '${requestScope['google.analytics.account']}', 'wisemapping.com');
})(); ga('send', 'pageview');
</script> </script>
</c:if> </c:if>