r102161 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r102160‎ | r102161 | r102162 >
Date:08:09, 6 November 2011
Author:maxsem
Status:ok
Tags:
Comment:
Simplification + fmt
Modified paths:
  • /trunk/extensions/Cite/modules/ext.cite/ext.cite.js (modified) (history)

Diff [purge]

Index: trunk/extensions/Cite/modules/ext.cite/ext.cite.js
@@ -1,12 +1,12 @@
22 ( function($) {
33 $( function() {
4 - $j('.biblio-cite-link,sup.reference a').tooltip({
 4+ $('.biblio-cite-link,sup.reference a').tooltip({
55 bodyHandler: function() {
6 - return $j( document.getElementById( this.hash.substr(1) ) )
 6+ return $( '#' + this.hash.substr(1) )
77 .html();
88 },
99 showURL : false
1010 } );
1111 } );
1212
13 -} )(jQuery);
 13+} )( jQuery );

Status & tagging log