From 9904558b3ae319587bb039233a50f561a847e8f7 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Wed, 1 Dec 2010 17:20:06 -0700 Subject: Tracking para Google Analytics MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Solo agregue el código de Google Analytics. --- views/layout.haml | 11 +++++++++++ views/layoutmini.haml | 11 +++++++++++ 2 files changed, 22 insertions(+) (limited to 'views') diff --git a/views/layout.haml b/views/layout.haml index 160b858..e47f5e2 100644 --- a/views/layout.haml +++ b/views/layout.haml @@ -10,6 +10,17 @@ %link{:rel => "icon", :href => "/images/favicon.ico", :type => "image/x-icon"} %link{:rel => "icon", :href => "/images/favicon.png", :type => "image/png"} %meta{'http-equiv' => 'Contet-Type', :content => 'text/html; charset=utf-8' }/ + %script{:type => "text/javascript" } + :plain + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-20018878-1']); + _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); + })(); %body #wrapper #header diff --git a/views/layoutmini.haml b/views/layoutmini.haml index 5e24c98..7270c4f 100644 --- a/views/layoutmini.haml +++ b/views/layoutmini.haml @@ -72,6 +72,17 @@ }); }); %meta{'http-equiv' => 'Contet-Type', :content => 'text/html; charset=utf-8' }/ + %script{:type => "text/javascript" } + :plain + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-20018878-1']); + _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); + })(); %body #wrapper #header -- cgit