From: Roan Kattouw Date: Wed, 5 Oct 2011 19:27:55 +0000 (+0000) Subject: Fix the bug reported on w:en:WP:VP/T where clicking on links in sortable table header... X-Git-Tag: 1.31.0-rc.0~27253 X-Git-Url: http://git.cyclocoop.org//%27%40script%40/%27?a=commitdiff_plain;h=28dc1840f5b7c788eee82eab897f91468e13bc89;p=lhc%2Fweb%2Fwiklou.git Fix the bug reported on w:en:WP:VP/T where clicking on links in sortable table headers sorts the table rather than following the link --- diff --git a/resources/jquery/jquery.tablesorter.js b/resources/jquery/jquery.tablesorter.js index 8150254fd1..f054aaac40 100644 --- a/resources/jquery/jquery.tablesorter.js +++ b/resources/jquery/jquery.tablesorter.js @@ -663,6 +663,10 @@ }; return false; } + } ) + // Allow links in headers to be clicked + .find( 'a' ).click( function( e ) { + e.stopPropagation(); } ); } );