diff options
author | Tommy Chen <tommy351@gmail.com> | 2012-06-03 05:00:56 +0200 |
---|---|---|
committer | Tommy Chen <tommy351@gmail.com> | 2012-06-03 05:00:56 +0200 |
commit | 175edf60a22b7cab43b02ac0897e254dd1ff544c (patch) | |
tree | 06b5913de107fb9616aa605922a086faed2edbe1 | |
parent | e160288412cccf7dcc784dcc64cf32451d970cbb (diff) | |
download | octopress-theme-jeyzu-175edf60a22b7cab43b02ac0897e254dd1ff544c.zip octopress-theme-jeyzu-175edf60a22b7cab43b02ac0897e254dd1ff544c.tar.gz |
convert indentation to tabs
-rw-r--r-- | source/_includes/google_analytics.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/source/_includes/google_analytics.html b/source/_includes/google_analytics.html index 4d4d596..2950c76 100644 --- a/source/_includes/google_analytics.html +++ b/source/_includes/google_analytics.html @@ -1,13 +1,13 @@ {% if site.google_analytics_tracking_id %} - <script type="text/javascript"> - var _gaq = _gaq || []; - _gaq.push(['_setAccount', '{{ site.google_analytics_tracking_id }}']); - _gaq.push(['_trackPageview']); + <script type="text/javascript"> + var _gaq = _gaq || []; + _gaq.push(['_setAccount', '{{ site.google_analytics_tracking_id }}']); + _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> + (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 %} |