Reformat js
[exim-website.git] / templates / web / doc / chapter.js
index 204f924db768c63cc51315899b5c4b0eefb6df2d..47c246041e3385910ca14637bae6b8d333760f58 100644 (file)
@@ -1,54 +1,50 @@
 // Sidebar table of contents
-       (function( $ ){
-               
-               var click_func = function(e){
-                       if( $('#toc').data('opened') ){
-                               $('#toc > *').animate({ left: '-=' + $('#toc > ul').width() + 'px' },'fast');
-                               $('#toc').removeData('opened');
-                       } else {
-                               $('#toc > *').animate({ left: '+=' + $('#toc > ul').width() + 'px' },'fast');
-                               $('#toc').data('opened',1);
-                       }
-               };
+(function ($) {
 
-                var type = document.location.pathname.match(/\/doc\/html\/spec_html\/filter/) ? 'filter' : 'spec';
-               
-               // Get the relevant table of contents
-               $.get( type === 'spec' ? 'index_toc.xml' : 'filter_toc.xml',
-                       function( xml ){
+    var click_func = function (e) {
+        if ($('#toc').data('opened')) {
+            $('#toc > *').animate({
+                left: '-=' + $('#toc > ul').width() + 'px'
+            }, 'fast');
+            $('#toc').removeData('opened');
+        } else {
+            $('#toc > *').animate({
+                left: '+=' + $('#toc > ul').width() + 'px'
+            }, 'fast');
+            $('#toc').data('opened', 1);
+        }
+    };
 
-                               // Remove the main list from the DOM for performance
-                               var $ul = $('#toc > ul').remove();
+    var type = document.location.pathname.match(/\/doc\/html\/spec_html\/filter/) ? 'filter' : 'spec';
 
-                               // Traverse chapters
-                               var chapter_id = 0;
-                               $(xml).find('c').each(function(){
-                                       ++chapter_id;
-                                               var chapter_title = $(this).children('t').text();
-                                       var chapter_url   = $(this).children('u').text();
+    // Get the relevant table of contents
+    $.get(type === 'spec' ? 'index_toc.xml' : 'filter_toc.xml', function (xml) {
 
-                                       var chapter_li = $('<li/>').append(
-                                               $('<a/>').attr({
-                                                       href:   chapter_url,
-                                                       title:  chapter_title
-                                               }).text( chapter_id + '. ' + chapter_title ),
-                                               $('<ul/>').hide()
-                                       ).appendTo( $ul );
-                                });
+        // Remove the main list from the DOM for performance
+        var $ul = $('#toc > ul').remove();
 
-                               $('#toc img').fadeIn('slow',function(){
-                                       // Add the main list back to the DOM
-                                       $ul
-                                               .removeClass( 'hidden' )
-                                               .css( 'visibility', 'hidden' )
-                                               .appendTo( '#toc' )
-                                               .css( 'left', '-' + $ul.width() + 'px' )
-                                               .css( 'visibility', 'visible' );
-                                               $('#toc > img').mousedown(click_func);
-                                               $('#toc > ul').click(click_func);
-                                               $('#toc a').click(function(e){e.stopPropagation()});
-                               });
-                       }
-                );
-        })( jQuery );
+        // Traverse chapters
+        var chapter_id = 0;
+        $(xml).find('c').each(function () {
+            ++chapter_id;
+            var chapter_title = $(this).children('t').text();
+            var chapter_url = $(this).children('u').text();
 
+            var chapter_li = $('<li/>').append(
+            $('<a/>').attr({
+                href: chapter_url,
+                title: chapter_title
+            }).text(chapter_id + '. ' + chapter_title), $('<ul/>').hide()).appendTo($ul);
+        });
+
+        $('#toc img').fadeIn('slow', function () {
+            // Add the main list back to the DOM
+            $ul.removeClass('hidden').css('visibility', 'hidden').appendTo('#toc').css('left', '-' + $ul.width() + 'px').css('visibility', 'visible');
+            $('#toc > img').mousedown(click_func);
+            $('#toc > ul').click(click_func);
+            $('#toc a').click(function (e) {
+                e.stopPropagation()
+            });
+        });
+    });
+})(jQuery);
\ No newline at end of file