Misplaced Pages

MediaWiki:Gadget-edittop.js: Difference between revisions

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
Browse history interactively← Previous editNext edit →Content deleted Content added
Revision as of 04:17, 12 May 2012 view sourceAnomie (talk | contribs)Edit filter managers, Autopatrolled, Administrators33,899 edits + Persian translation← Previous edit Revision as of 13:35, 18 July 2012 view source TheDJ (talk | contribs)Extended confirmed users, Template editors46,201 edits fix directionality issueNext edit →
Line 25: Line 25:
var editspans = getElementsByClassName (our_content, "span", "editsection"); var editspans = getElementsByClassName (our_content, "span", "editsection");
var span1; var span1;
var dir = $('#firstHeading').css('direction') || 'rtl';
var side = "right";

if (dir.toLowerCase() == "ltr" ) {
side = "left";
}



for (var i = 0; editspans && i < editspans.length; i++) { for (var i = 0; editspans && i < editspans.length; i++) {
Line 38: Line 45:
var editwidth = span1.offsetWidth; var editwidth = span1.offsetWidth;
if (mw.config.get("skin") == "monobook") { if (mw.config.get("skin") == "monobook") {
mw.util.addCSS ("h1.firstHeading span.editsection {float: right;}"); mw.util.addCSS ("h1.firstHeading span.editsection {float: " + side + ";}");
} }
if (mw.config.get("skin") == "modern") { if (mw.config.get("skin") == "modern") {
mw.util.addCSS ("h1#firstHeading span.editsection {float: right;}"); mw.util.addCSS ("h1#firstHeading span.editsection {float: " + side + ";}");
} }
if (mw.config.get("skin") == "vector") { if (mw.config.get("skin") == "vector") {
Line 50: Line 57:
var topicons = getElementsByClassName (our_content, "div", "topicon"); var topicons = getElementsByClassName (our_content, "div", "topicon");
for (var el = 0; topicons && el < topicons.length; el++) { for (var el = 0; topicons && el < topicons.length; el++) {
if (dir.toLowerCase() == "ltr" ) {
topicons.style.marginRight = editwidth + "px";
topicons.style.marginLeft = editwidth + "px";
} else {
topicons.style.marginRight = editwidth + "px";
}
} }
var mwfrtag = document.getElementById ("mw-fr-revisiontag"); var mwfrtag = document.getElementById ("mw-fr-revisiontag");
if (mwfrtag) { if (mwfrtag) {
mwfrtag.style.marginRight = editwidth + "px"; if (dir.toLowerCase() == "ltr" ) {
mwfrtag.style.marginLeft = editwidth + "px";
} else {
mwfrtag.style.marginRight = editwidth + "px";
}
} }



Revision as of 13:35, 18 July 2012

// **********************************************************************
// **                 ***WARNING GLOBAL GADGET FILE***                 **
// **             changes to this file affect many users.              **
// **           please discuss on the talk page before editing         **
// **                                                                  **
// **********************************************************************
// Imported from ], version as of: 2007-06-19T04:28:52
// Updated from ], version as of: 2009-04-28T11:54:22

if ($.inArray( mw.config.get('wgAction'), ) !== -1 && mw.config.get( 'wgNamespaceNumber' ) >=0) {
  $(function edittop_hook () {
    var localtitles = {
      cs: 'Editovat úvodní sekci',
      en: 'Edit lead section',
      fa: 'ویرایش بخش آغازین',
      fr: 'Modifier le résumé introductif',
      it: 'Modifica della sezione iniziale',
      ja: '導入部を編集',
      ko: '도입부를 편집',
      pt: 'Editar a seção superior',
      'pt-br': 'Editar a seção superior'
    };

    var our_content = document.getElementById ("content") || document.getElementById ("mw_content") || document.body;
    var editspans = getElementsByClassName (our_content, "span", "editsection");
    var span1;
    var dir = $('#firstHeading').css('direction') || 'rtl';
    var side = "right";

    if (dir.toLowerCase() == "ltr" ) {
      side = "left";
    }


    for (var i = 0; editspans && i < editspans.length; i++) {
      if (editspans.className.indexOf ("plainlinks") == -1) {
        span1 = editspans;
        break;
      }
    }
    if (!span1) {
      return;
    }
    var span0 = span1.cloneNode (true);
    var editwidth = span1.offsetWidth;
    if (mw.config.get("skin") == "monobook") {
      mw.util.addCSS ("h1.firstHeading span.editsection {float: " + side + ";}");
    }
    if (mw.config.get("skin") == "modern") {
      mw.util.addCSS ("h1#firstHeading span.editsection {float: " + side + ";}");
    }
    if (mw.config.get("skin") == "vector") {
      mw.util.addCSS ("h1.firstHeading span.editsection {font-size: 50%;}");
    } else {
      editwidth += 10;
    }
    var topicons = getElementsByClassName (our_content, "div", "topicon");
    for (var el = 0; topicons && el < topicons.length; el++) {
      if (dir.toLowerCase() == "ltr" ) {
        topicons.style.marginLeft = editwidth + "px";
      } else {
        topicons.style.marginRight = editwidth + "px";
      }
    }
    var mwfrtag = document.getElementById ("mw-fr-revisiontag");
    if (mwfrtag) {
      if (dir.toLowerCase() == "ltr" ) {
        mwfrtag.style.marginLeft = editwidth + "px";
      } else {
        mwfrtag.style.marginRight = editwidth + "px";
      }
    }

    our_content = document.getElementById ("mw_header") || document.getElementById ("content") || document.body;
    var parent = our_content.getElementsByTagName ("H1");
    parent.insertBefore (span0, parent.firstChild);
    var a = span0.getElementsByTagName ("A");
    if (a.href.indexOf ("&section=T") == -1) {
      a.title = a.title.replace (/(: |:).*$/, "$1" + "0");
      a.setAttribute ("href", a.getAttribute ("href", 2).replace (/&section=\d+/, "&section=0"));
    }
    else { //transcluded
      a.title = localtitles || localtitles.en;
      a.setAttribute ("href", mw.util.wikiGetlink( mw.config.get( 'wgPageName' ) ) + "?action=edit&section=0");
    }
  });
}