பயனர்:Kurumban/vector.js
Appearance
குறிப்பு - சேமித்த பின்னர், நீங்கள் செய்த மாற்றங்களைக் காண்பதற்கு உங்கள் உலவியின் இடைமாற்று அகற்றப்பட வேண்டும்.
- மொஸில்லா பயர்பாக்ஸ் / சபாரி: Shift+Reload, அல்லது Ctrl-F5 அல்லது Ctrl-R (⌘-R Mac ல்)
- கூகிள் குரோம் Ctrl-Shift-R அழுத்தவும். (⌘-Shift-R Mac ல்) ;
- இண்டர்நெட் எக்ஸ்ப்ளோரர்: Ctrl-Refresh அல்லது Ctrl-F5 ஐ அழுத்தவும்.
- ஒபேரா: Tools → Preferences இல் இடைமாற்றை அகற்றவும்;
importScript('பயனர்:Surya_Prakash.S.A./தொடுப்பிணைப்பி.js');
importScript("User:Mahir78/template_helper.js");
importScript("User:Mahir78/translation helper.js");
mw.loader.load('https://en.wikipedia.org/w/index.php?title=User:WikiBhasha.MSR/WikiBhasha.js&action=raw&ctype=text/js');
// importScript('en: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;
}
FriendlyConfig.customTagList = [
{
label: '{{சான்றில்லை}}: சான்றுகள் இல்லா கட்டுரை',
value: 'சான்றில்லை' }
];