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

13 lines
230 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() {
2011-11-06 08:09:56 +00:00
return $( '#' + this.hash.substr(1) )
.html();
},
showURL : false
} );
} );
2011-11-06 08:09:56 +00:00
} )( jQuery );