குறிப்பு - சேமித்த பின்னர், நீங்கள் செய்த மாற்றங்களைக் காண்பதற்கு உங்கள் உலவியின் இடைமாற்று அகற்றப்பட வேண்டும்.

  • மொஸில்லா பயர்பாக்ஸ் / சபாரி: Shift+Reload, அல்லது Ctrl-F5 அல்லது Ctrl-R (⌘-R Mac ல்)
  • கூகிள் குரோம் Ctrl-Shift-R அழுத்தவும். (⌘-Shift-R Mac ல்) ;
  • இண்டர்நெட் எக்ஸ்ப்ளோரர்: Ctrl-Refresh அல்லது Ctrl-F5 ஐ அழுத்தவும்.
  • ஒபேரா: Tools → Preferences இல் இடைமாற்றை அகற்றவும்;
importScript("User:Justjkk/shorturl1.js");
importScript("User:Mahir78/Template_helper.js");
importScript("User:Lupin/popups.js");
importScript("User:Surya_Prakash.S.A./விக்கியன்பு.js");

simplePopups = false;
popupPreviews = true;

var oldEditsectionLinks = new Boolean("false");

$ (setModifySectionStyle);

 /*** 
   * Moving [edit] 
   * 
   * Fixed titles that appear ill because of limitations due to MediaWiki. 
   * This script should be removed when the [[bugzilla: 11555]] will be resolved (similar behavior) 
   * 
   * Copyright 2006, Marc Mongenet.  GPL and GFDL. 
   * 
   * The function looks for <span class="editsection">, and move 'em 
   * At the End of Their parent and display inline 'em in small font. 
   * Var = true oldEditsectionLinks Disable the function. 
   */
function setModifySectionStyle(element) {
     /**if (typeof oldEditsectionLinks! == 'undefined' & & oldEditsectionLinks) {
         return;
     }**/
     var root = element?element:document;
     try {
         var sections = ["h1","h2","h3","h4","h5","h6"];
         for(i=0; i<6; i++) {
             var list = root.getElementsByTagName(sections[i]);
             for(var j=0,l=list.length;j<l;j++) {
                 var parent = list[j];
                 var span = parent.firstChild;
                 if (span.className === "editsection") {
                    addClass(parent, "modifiedSectionTitle");
                    parent.appendChild(span);
                 }
             }
         }
     }
     catch (e) {}
}

function addClass(node, className) {
    if (hasClass(node, className)) {
        return false;
    }
    var cache = node.className;
    if (cache) {
        node.className = cache + ' ' + className;
    } else {
        node.className = className;
    }
    return true;
}

function hasClass(node, className) {
    var haystack = node.className;
    if(!haystack) return false;
    if (className === haystack) {
        return true;
    }
    return (" " + haystack + " ").indexOf(" " + className + " ") > -1;
}
"https://ta.wikipedia.org/w/index.php?title=பயனர்:Justjkk/vector.js&oldid=3103059" இலிருந்து மீள்விக்கப்பட்டது