Difference between revisions of "MediaWiki:Gadget-HeadingLink.js"

From Species-ID
Jump to: navigation, search
m
m (vertical-align, +h1)
Line 12: Line 12:
 
/* global $j */
 
/* global $j */
 
/* add a link of the section while hovering it */
 
/* add a link of the section while hovering it */
if ($j('h2,h3,h4').length) {
+
if ($j('h1,h2,h3,h4').length) {
   $j('h2,h3,h4').mouseenter(function () {
+
   $j('h1,h2,h3,h4').mouseenter(function () {
 
     hrefID = $j(this).find('.mw-headline').attr('id');
 
     hrefID = $j(this).find('.mw-headline').attr('id');
 
     $j(this).append('<a ' +  
 
     $j(this).append('<a ' +  
Line 19: Line 19:
 
       ' style="color:#CCCCCC; margin-left:0.2em;" ' +  
 
       ' style="color:#CCCCCC; margin-left:0.2em;" ' +  
 
       ' title="' + ( $.jI18n.en.toolTipHeadingLink ? $.resource('toolTipHeadingLink') : 'Permanent link to this headline' ) + '" ' +  
 
       ' title="' + ( $.jI18n.en.toolTipHeadingLink ? $.resource('toolTipHeadingLink') : 'Permanent link to this headline' ) + '" ' +  
       ' href="' + '?oldid=' + wgCurRevisionId + '#' + hrefID + '" ><img src="http://species-id.net/o/media/f/f9/Button-sprite_link-pale.png"  style="vertical-align:baseline;" width="16" height="16"></a>');
+
       ' href="' + '?oldid=' + wgCurRevisionId + '#' + hrefID + '" ><img src="http://species-id.net/o/media/f/f9/Button-sprite_link-pale.png"  style="vertical-align:middle;" width="16" height="16"></a>');
 
   }).mouseleave(function () {
 
   }).mouseleave(function () {
 
     $j(this).find('a.headerlink').remove();
 
     $j(this).find('a.headerlink').remove();

Revision as of 14:43, 10 October 2011

// <source lang="javascript">
// This JavaScript will be loaded only for some pages, see MediaWiki:Common.js
// Copyright A. Plank
/*  
   This program is free software; you can redistribute it and/or modify it under the terms of 
   the EUPL v.1.1 or (at your option) the GNU General Public License as published by the Free 
   Software Foundation; either GPL v.3 or (at your option) any later version. This program is  
   distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the  
   implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General  
   Public License (http://www.gnu.org/licenses/) for more details.  
 */
/* global $j */
/* add a link of the section while hovering it */
if ($j('h1,h2,h3,h4').length) {
  $j('h1,h2,h3,h4').mouseenter(function () {
    hrefID = $j(this).find('.mw-headline').attr('id');
    $j(this).append('<a ' + 
      ' class="headerlink" ' + 
      ' style="color:#CCCCCC; margin-left:0.2em;" ' + 
      ' title="' + ( $.jI18n.en.toolTipHeadingLink ? $.resource('toolTipHeadingLink') : 'Permanent link to this headline' ) + '" ' + 
      ' href="' + '?oldid=' + wgCurRevisionId + '#' + hrefID + '" ><img src="http://species-id.net/o/media/f/f9/Button-sprite_link-pale.png"  style="vertical-align:middle;" width="16" height="16"></a>');
  }).mouseleave(function () {
    $j(this).find('a.headerlink').remove();
  });
}
// </source>