FIX: indent level of sort_fragments
authorJames Bergstra <james.bergstra@gmail.com>
Thu, 21 Feb 2013 18:16:26 +0000 (13:16 -0500)
committerJames Bergstra <james.bergstra@gmail.com>
Thu, 21 Feb 2013 18:16:26 +0000 (13:16 -0500)
js/reveal.js

index 15cfbaeb7820bc6ecbf6ba4e5c33917c68f8201e..ded2e86168894d1bdb05c7093576d2d8801b7db5 100644 (file)
@@ -138,30 +138,31 @@ var Reveal = (function(){
                        handled: false,
                        threshold: 80
                };
-        /**
-         * Return a sorted fragments list, ordered by an increasing "fragment-pos" attribute.
-         *
-         * Fragments will be revealed in the order that they are returned by
-         * this function, so you can use "fragment-pos" attributes to control
-         * the order of fragment appearance.
-         *
-         * To maintain a sensible default fragment order, fragments are presumed
-         * to be passed in document order. This function adds a "fragment-pos"
-         * attribute to each node if such an attribute is not already present,
-         * and sets that attribute to an integer value which is the position of
-         * the fragment within the fragments list.
-         *
-         */
-        function sort_fragments( fragments ) {
-            var a = toArray(fragments)
-            a.forEach( function (el, idx) {
-                    if (!el.hasAttribute('fragment-pos')) {
-                        el.setAttribute('fragment-pos', idx) }})
-            a.sort(function(l, r) {
-                    return l.getAttribute( 'fragment-pos' )
-                           - r.getAttribute( 'fragment-pos') })
-            return a
-        }
+
+    /**
+     * Return a sorted fragments list, ordered by an increasing "fragment-pos" attribute.
+     *
+     * Fragments will be revealed in the order that they are returned by
+     * this function, so you can use "fragment-pos" attributes to control
+     * the order of fragment appearance.
+     *
+     * To maintain a sensible default fragment order, fragments are presumed
+     * to be passed in document order. This function adds a "fragment-pos"
+     * attribute to each node if such an attribute is not already present,
+     * and sets that attribute to an integer value which is the position of
+     * the fragment within the fragments list.
+     *
+     */
+    function sort_fragments( fragments ) {
+        var a = toArray(fragments)
+        a.forEach( function (el, idx) {
+                if (!el.hasAttribute('fragment-pos')) {
+                    el.setAttribute('fragment-pos', idx) }})
+        a.sort(function(l, r) {
+                return l.getAttribute( 'fragment-pos' )
+                       - r.getAttribute( 'fragment-pos') })
+        return a
+    }
 
        /**
         * Starts up the presentation if the client is capable.