blob: eb1e5079ef7760dabd93d1720b5ee82b1980375f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
( function ( mw, $ ) {
'use strict';
mw.hook( 'wikipage.content' ).add( function ( $content ) {
$content.find( '.biblio-cite-link,sup.reference a' ).tooltip( {
bodyHandler: function () {
return $content.find( '#' + this.hash.substr( 1 ) + ' > .reference-text' )
.html();
},
showURL: false
} );
} );
} )( mediaWiki, jQuery );
|