mediawiki-extensions-Cite/modules/ext.cite/ext.cite.js
2011-11-06 08:09:56 +00:00

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 );