Browse Source

Fix indention.

Florian Kissling 10 years ago
parent
commit
14c6113eef
3 changed files with 74 additions and 74 deletions
  1. 6 6
      docs/_includes/ga.html
  2. 53 53
      docs/_layouts/default.html
  3. 15 15
      docs/_layouts/home.html

+ 6 - 6
docs/_includes/ga.html

@@ -1,9 +1,9 @@
 <script type="text/javascript">
-    (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-        (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-        m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-    })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
+  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+    (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
+    m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
 
-    ga('create', 'UA-57144786-2', 'auto');
-    ga('send', 'pageview');
+  ga('create', 'UA-57144786-2', 'auto');
+  ga('send', 'pageview');
 </script>

+ 53 - 53
docs/_layouts/default.html

@@ -1,56 +1,56 @@
 <!doctype html>
 <html>
-    <head>
-        {% include head.html %}
-    </head>
-    <body>
-        {% include navigation.html %}
-
-        {{ content }}
-
-        {% include footer.html %}
-
-        <script>
-            (function ($) {
-                'use strict';
-
-                $(function () {
-                    var $window = $(window);
-                    var $body = $(document.body);
-                    var $sidebar = $('.s2-docs-sidebar');
-
-                    $body.scrollspy({
-                        target: '.s2-docs-sidebar',
-                        offset: 40
-                    });
-
-                    $window.on('load', function () {
-                        $body.scrollspy('refresh');
-                    });
-
-                    $sidebar.affix({
-                        offset: {
-                            top: function () {
-                                var offsetTop = $sidebar.offset().top;
-                                var navOuterHeight = $('.s2-docs-nav').height();
-
-                                return (this.top = offsetTop - navOuterHeight);
-                            },
-                            bottom: function () {
-                                return (this.bottom = $('.s2-docs-footer').outerHeight(true));
-                            }
-                        }
-                    });
-                });
-            })(jQuery);
-
-            (function () {
-                'use strict';
-
-                addAnchors('.s2-docs-container h1, .s2-docs-container h2, .s2-docs-container h3, .s2-docs-container h4, .s2-docs-container h5');
-            })();
-        </script>
-
-        {% include ga.html %}
-    </body>
+  <head>
+    {% include head.html %}
+  </head>
+  <body>
+    {% include navigation.html %}
+
+    {{ content }}
+
+    {% include footer.html %}
+
+    <script>
+      (function ($) {
+        'use strict';
+
+        $(function () {
+          var $window = $(window);
+          var $body = $(document.body);
+          var $sidebar = $('.s2-docs-sidebar');
+
+          $body.scrollspy({
+            target: '.s2-docs-sidebar',
+            offset: 40
+          });
+
+          $window.on('load', function () {
+            $body.scrollspy('refresh');
+          });
+
+          $sidebar.affix({
+            offset: {
+              top: function () {
+                var offsetTop = $sidebar.offset().top;
+                var navOuterHeight = $('.s2-docs-nav').height();
+
+                return (this.top = offsetTop - navOuterHeight);
+              },
+              bottom: function () {
+                return (this.bottom = $('.s2-docs-footer').outerHeight(true));
+              }
+            }
+          });
+        });
+      })(jQuery);
+
+      (function () {
+        'use strict';
+
+        addAnchors('.s2-docs-container h1, .s2-docs-container h2, .s2-docs-container h3, .s2-docs-container h4, .s2-docs-container h5');
+      })();
+    </script>
+
+    {% include ga.html %}
+  </body>
 </html>

+ 15 - 15
docs/_layouts/home.html

@@ -1,23 +1,23 @@
 <!doctype html>
 <html class="s2-docs-home">
-    <head>
-        {% include head.html %}
-    </head>
-    <body>
-        {% include navigation.html %}
+  <head>
+    {% include head.html %}
+  </head>
+  <body>
+    {% include navigation.html %}
 
-        {{ content }}
+    {{ content }}
 
-        {% include footer.html %}
+    {% include footer.html %}
 
-        <script>
-           (function () {
-              'use strict';
+    <script>
+      (function () {
+        'use strict';
 
-              prettyPrint();
-            })();
-        </script>
+        prettyPrint();
+      })();
+    </script>
 
-        {% include ga.html %}
-    </body>
+    {% include ga.html %}
+  </body>
 </html>