mediawiki-extensions-Cite/modules/ext.cite/ext.cite.js
2012-01-04 15:00:01 +00:00

13 lines
253 B
JavaScript

( function($) {
$( function() {
$('.biblio-cite-link,sup.reference a').tooltip({
bodyHandler: function() {
return $( '#' + this.hash.substr(1) + ' > .reference-text' )
.html();
},
showURL : false
} );
} );
} )( jQuery );