Difference between revisions of "MediaWiki:Common.js"
From Ryzom Commons
m |
m |
||
Line 3: | Line 3: | ||
function FillUploadForm() { | function FillUploadForm() { | ||
uploadDesc = document.getElementById('wpUploadDescription'); | uploadDesc = document.getElementById('wpUploadDescription'); | ||
− | uploadDesc.rows = | + | uploadDesc.rows = 14; |
+ | uploadDesc.cols = 90; | ||
if(wgCanonicalSpecialPageName == "Upload" && document.getElementById('wpDestFile').value == "") { | if(wgCanonicalSpecialPageName == "Upload" && document.getElementById('wpDestFile').value == "") { | ||
− | uploadDesc.innerHTML = "<!-- Please categorize your uploads! An example is right below; just uncomment it to get started! -->\n<!-- [[Category:Ryzom Forge images]] -->\n\n{{Information\n|description=\n|source=\n|date=\n|author=\n|permission=\n|other_versions=\n|tags=\n}}"; | + | uploadDesc.innerHTML = "<!-- Please categorize your uploads! -->\n<!-- An example is right below; just uncomment it to get started! -->\n<!-- [[Category:Ryzom Forge images]] -->\n\n{{Information\n|description=\n|source=\n|date=\n|author=\n|permission=\n|other_versions=\n|tags=\n}}"; |
} | } | ||
} | } | ||
addOnloadHook( FillUploadForm ); | addOnloadHook( FillUploadForm ); | ||
/* </nowiki> */ | /* </nowiki> */ |
Revision as of 00:18, 6 August 2014
/* Any JavaScript here will be loaded for all users on every page load. */
/* <nowiki> */
function FillUploadForm() {
uploadDesc = document.getElementById('wpUploadDescription');
uploadDesc.rows = 14;
uploadDesc.cols = 90;
if(wgCanonicalSpecialPageName == "Upload" && document.getElementById('wpDestFile').value == "") {
uploadDesc.innerHTML = "<!-- Please categorize your uploads! -->\n<!-- An example is right below; just uncomment it to get started! -->\n<!-- [[Category:Ryzom Forge images]] -->\n\n{{Information\n|description=\n|source=\n|date=\n|author=\n|permission=\n|other_versions=\n|tags=\n}}";
}
}
addOnloadHook( FillUploadForm );
/* </nowiki> */