| Index: branches/RL2/extensions/Gadgets/modules/ext.gadgets.gadgetmanager.js |
| — | — | @@ -185,8 +185,13 @@ |
| 186 | 186 | t = new mw.Title( 'Gadgets/' + id, -1 ); |
| 187 | 187 | } |
| 188 | 188 | window.location.href = t.getUrl(); |
| 189 | | - } ); |
| 190 | 189 | |
| | 190 | + } ).find( 'a' ).click( function( e ) { |
| | 191 | + // Avoid other links from becoming unclickable, |
| | 192 | + // Don't let clicks on those bubble up |
| | 193 | + e.stopPropagation(); |
| | 194 | + }); |
| | 195 | + |
| 191 | 196 | if ( ga.conf.userIsAllowed['gadgets-definition-create'] ) { |
| 192 | 197 | var createTab = mw.util.addPortletLink( |
| 193 | 198 | // Not all skins use the new separated tabs yet, |