Localisation updates for core and extension messages from translatewiki.net
[lhc/web/wiklou.git] / resources / jquery / jquery.tablesorter.js
index 3b6de7b..f134aab 100644 (file)
         * @param $table jQuery object for a <table>
         */ 
        function emulateTHeadAndFoot( $table ) {
-               var $rows = $table.find( 'tr' );
+               var $rows = $table.find( '> tbody > tr' );
                if( !$table.get(0).tHead ) {
                        var $thead = $( '<thead>' );
                        $rows.each( function() {
                                }
                                $thead.append( this );
                        } );
-                       $table.prepend( $thead );
+                       $table.children('tbody').before( $thead );
                }
                if( !$table.get(0).tFoot ) {
                        var $tfoot = $( '<tfoot>' );
                        });
                        $tableHeaders = $( longest );
                }
-               $tableHeaders = $tableHeaders.find( 'th' ).each( function( index ) {
+               $tableHeaders = $tableHeaders.children( 'th' ).each( function( index ) {
                        this.column = realCellIndex;
 
                        var colspan = this.colspan;
 
        function explodeRowspans( $table ) {
                // Split multi row cells into multiple cells with the same content
-               $table.find( 'tbody [rowspan]' ).each(function() {
+               $table.find( '> tbody > tr > [rowspan]' ).each(function() {
                        var rowSpan = this.rowSpan;
                        this.rowSpan = 1;
                        var cell = $( this );
                        var next = cell.parent().nextAll();
                        for ( var i = 0; i < rowSpan - 1; i++ ) {
-                               var td = next.eq( i ).find( 'td' );
+                               var td = next.eq( i ).children( 'td' );
                                if ( !td.length ) {
                                        next.eq( i ).append( cell.clone() );
                                } else if ( this.cellIndex === 0 ) {
                                        cacheRegexs();
 
                                        // Apply event handling to headers
-                                       // this is to big, perhaps break it out?
+                                       // this is too big, perhaps break it out?
                                        $headers.click( function( e ) {
+                                               if ( e.target.nodeName.toLowerCase() == 'a' ) {
+                                                       // The user clicked on a link inside a table header
+                                                       // Do nothing and let the default link click action continue
+                                                       return true;
+                                               }
 
                                                if ( firstTime ) {
                                                        firstTime = false;
                                                        // Legacy fix of .sortbottoms
                                                        // Wrap them inside inside a tfoot (because that's what they actually want to be) &
                                                        // and put the <tfoot> at the end of the <table>
-                                                       var $sortbottoms = $table.find( 'tr.sortbottom' );
+                                                       var $sortbottoms = $table.find( '> tbody > tr.sortbottom' );
                                                        if ( $sortbottoms.length ) {
-                                                               var $tfoot = $table.find( 'tfoot' );
-                                                               if( $tfoot.length ) {
+                                                               var $tfoot = $table.children( 'tfoot' );
+                                                               if ( $tfoot.length ) {
                                                                        $tfoot.eq(0).prepend( $sortbottoms );
                                                                } else {
                                                                        $table.append( $( '<tfoot>' ).append( $sortbottoms ) )
                                                        };
                                                        return false;
                                                }
-                                       } )
-                                       // Allow links in headers to be clicked
-                                       .find( 'a' ).click( function( e ) {
-                                               e.stopPropagation();
                                        } );
-
                                } );
                        },