Index: trunk/extensions/UploadWizard/resources/jquery/jquery.mwCoolCats.js |
— | — | @@ -90,7 +90,7 @@ |
91 | 91 | if ( isHidden ) { |
92 | 92 | $li.hide(); |
93 | 93 | } else { |
94 | | - $anchor.attr( { target: "_new", href: _catLink( cat ) } ); |
| 94 | + $anchor.attr( { target: "_blank", href: _catLink( cat ) } ); |
95 | 95 | $li.append( $j.fn.removeCtrl( null, 'mwe-upwiz-category-remove', function() { $li.remove(); } ) ); |
96 | 96 | } |
97 | 97 | $container.find( 'ul' ).append( $li ); |
Index: trunk/extensions/UploadWizard/resources/mw.UploadWizard.js |
— | — | @@ -1508,7 +1508,7 @@ |
1509 | 1509 | // Set the thumbnail links so that they point to the image description page |
1510 | 1510 | $thumbnailWrapDiv.find( 'a' ).attr( { |
1511 | 1511 | 'href': upload.imageinfo.descriptionurl, |
1512 | | - 'target' : '_new' |
| 1512 | + 'target' : '_blank' |
1513 | 1513 | } ); |
1514 | 1514 | $thanksDiv.append( $thumbnailWrapDiv ); |
1515 | 1515 | |