Commit 4438ccaf authored by Maxime Hadjinlian's avatar Maxime Hadjinlian Committed by Thomas Petazzoni
Browse files

website: Fix indentation



[Thomas: fix commit title.]

Signed-off-by: default avatarMaxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 36c12e82
Loading
Loading
Loading
Loading
+41 −39
Original line number Diff line number Diff line
@@ -44,9 +44,12 @@ function google_analytics() {
    _gaq.push(['_setAllowLinker', true]);
    _gaq.push(['_trackPageview']);

  var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    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);
    var s = document.getElementsByTagName('script')[0];
    s.parentNode.insertBefore(ga, s);
}

google.load("feeds", "1");
@@ -59,4 +62,3 @@ jQuery(document).ready(function($){
    url = url.split(/[\\/]/).pop()
    $('.nav a[href="/' + url + '"]').parent().addClass('active');
});