From 28dc1840f5b7c788eee82eab897f91468e13bc89 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Wed, 5 Oct 2011 19:27:55 +0000 Subject: [PATCH] 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 --- resources/jquery/jquery.tablesorter.js | 4 ++++ 1 file changed, 4 insertions(+) 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(); } ); } ); -- 2.20.1