Ticket #6111: 6111.patch

File 6111.patch, 729 bytes (added by Martin, 14 years ago)

Patch

  • _source/plugins/tabletools/plugin.js

     
    422422                for ( var r = 0; r < tableMap.length; r++ )
    423423                {
    424424                        var row = tableMap[ r ];
    425                         if ( typeof cell == 'undefined' )
    426                                 oCol.push( row[ colIndex ] );
     425                        if (typeof cell == 'undefined') {
     426                oCol.push(row[colIndex]);
     427
     428                if (row[colIndex].rowSpan > 1)
     429                    r += row[colIndex].rowSpan - 1;               
     430            }
    427431                        else if ( cell.is && row[ colIndex ] == cell.$ )
    428432                                return r;
    429433                        else if ( r == cell )
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy