Index: trunk/extensions/Cite/modules/ext.cite/ext.cite.js |
— | — | @@ -1,12 +1,12 @@ |
2 | 2 | ( function($) { |
3 | 3 | $( function() { |
4 | | - $j('.biblio-cite-link,sup.reference a').tooltip({ |
| 4 | + $('.biblio-cite-link,sup.reference a').tooltip({ |
5 | 5 | bodyHandler: function() { |
6 | | - return $j( document.getElementById( this.hash.substr(1) ) ) |
| 6 | + return $( '#' + this.hash.substr(1) ) |
7 | 7 | .html(); |
8 | 8 | }, |
9 | 9 | showURL : false |
10 | 10 | } ); |
11 | 11 | } ); |
12 | 12 | |
13 | | -} )(jQuery); |
| 13 | +} )( jQuery ); |