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

13 lines
253 B
JavaScript
Raw Normal View History

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