mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CiteThisPage
synced 2024-11-15 11:45:23 +00:00
4954b2f4d2
Factored out of https://gerrit.wikimedia.org/r/79472 Change-Id: I4d755ab57de3754b361174b33e53462f16e490da
14 lines
351 B
JavaScript
14 lines
351 B
JavaScript
( 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 );
|