mediawiki-extensions-Cite/modules/ext.cite/ext.cite.js

13 lines
251 B
JavaScript

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