Difference between revisions of "MediaWiki:Common.js"
From Ryzom Commons
m |
m |
||
Line 2: | Line 2: | ||
/* <nowiki> */ | /* <nowiki> */ | ||
function FillUploadForm() { | function FillUploadForm() { | ||
+ | uploadDesc = document.getElementById('wpUploadDescription'); | ||
+ | uploadDesc.rows = 12; | ||
if(wgCanonicalSpecialPageName == "Upload" && document.getElementById('wpDestFile').value == "") { | if(wgCanonicalSpecialPageName == "Upload" && document.getElementById('wpDestFile').value == "") { | ||
− | |||
uploadDesc.innerHTML = "<!-- [[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 = "<!-- [[Category:Ryzom Forge images]] -->\n\n{{Information\n|description=\n|source=\n|date=\n|author=\n|permission=\n|other_versions=\n|tags=\n}}"; | ||
} | } |
Revision as of 00:15, 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 = 12;
if(wgCanonicalSpecialPageName == "Upload" && document.getElementById('wpDestFile').value == "") {
uploadDesc.innerHTML = "<!-- [[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> */