r100252 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r100251‎ | r100252 | r100253 >
Date:18:44, 19 October 2011
Author:reedy
Status:resolved
Tags:
Comment:
Fix inability to click on links in popup boxes per Krinkle
Modified paths:
  • /trunk/extensions/Contest/resources/jquery.contestChallenges.js (modified) (history)

Diff [purge]

Index: trunk/extensions/Contest/resources/jquery.contestChallenges.js
@@ -36,7 +36,6 @@
3737 .fadeOut( 'fast' );
3838 } );
3939 e.stopPropagation();
40 - return false;
4140 }
4241 } )
4342 .append(
@@ -55,8 +54,9 @@
5655 )
5756 .append(
5857 $( '<div class="mw-codechallenge-popup"><div>' )
59 - .click( function() {
60 - return false;
 58+ .click( function( e ) {
 59+ e.stopPropogation();
 60+ e.preventDefault();
6161 } )
6262 .append( '<div class="mw-codechallenge-popup-callout"></div>' )
6363 .append( challenge.text )

Follow-up revisions

RevisionCommit summaryAuthorDate
r100257MFT r100252reedy19:03, 19 October 2011
r100261Fix method name typo from r100252reedy19:31, 19 October 2011
r100289Fix link clicking in callout boxesreedy22:48, 19 October 2011

Status & tagging log