Index: trunk/extensions/ArticleFeedbackv5/modules/jquery.articleFeedbackv5/jquery.articleFeedbackv5.js |
— | — | @@ -2274,9 +2274,11 @@ |
2275 | 2275 | // and it needs to show up if the site subhead (e.g., "From Wikipedia, the free |
2276 | 2276 | // encyclopedia") is not visible for any reason. |
2277 | 2277 | if ( $( '#siteSub' ).filter( ':visible' ).length ) { |
2278 | | - $( '#siteSub' ).append( ' ' ).append( $link ); |
| 2278 | + $link.prepend( ' | ' ); |
| 2279 | + $( '#siteSub' ).append( $link ); |
2279 | 2280 | } else if ( $( 'h1.pagetitle + p.subtitle' ).filter( ':visible' ).length ) { |
2280 | | - $( 'h1.pagetitle + p.subtitle' ).append( ' ' ).append( $link ); |
| 2281 | + $link.prepend( ' | ' ); |
| 2282 | + $( 'h1.pagetitle + p.subtitle' ).append( $link ); |
2281 | 2283 | } else if ( $( '#mw_contentholder .mw-topboxes' ).length ) { |
2282 | 2284 | $( '#mw_contentholder .mw-topboxes' ).after( $link ); |
2283 | 2285 | } else if ( $( '#bodyContent' ).length ) { |