mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-14 10:34:53 +00:00
13 lines
230 B
JavaScript
13 lines
230 B
JavaScript
( function($) {
|
|
$( function() {
|
|
$('.biblio-cite-link,sup.reference a').tooltip({
|
|
bodyHandler: function() {
|
|
return $( '#' + this.hash.substr(1) )
|
|
.html();
|
|
},
|
|
showURL : false
|
|
} );
|
|
} );
|
|
|
|
} )( jQuery );
|