Difference between revisions of "MediaWiki:Common.js"

From Ryzom Commons

Jump to: navigation, search
m
m
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
function FillUploadForm() {
 
function FillUploadForm() {
 +
if(wgNamespaceNumber == 6 && document.getElementById('wpDestFile').value == "") {
 
uploadDesc = document.getElementById('wpUploadDescription');
 
uploadDesc = document.getElementById('wpUploadDescription');
uploadDesc.innerHTML = "test";
+
uploadDesc.innerHTML = "{{Information
 +
|Description=
 +
|Source=
 +
|Date=
 +
|Author=
 +
|Permission=
 +
|other_versions=
 +
}}";
 +
}
 
}
 
}
 
addOnloadHook( FillUploadForm );
 
addOnloadHook( FillUploadForm );

Revision as of 03:32, 30 May 2010

/* Any JavaScript here will be loaded for all users on every page load. */
function FillUploadForm() {
if(wgNamespaceNumber == 6 && document.getElementById('wpDestFile').value == "") {
uploadDesc = document.getElementById('wpUploadDescription');
uploadDesc.innerHTML = "{{Information
|Description=
|Source=
|Date=
|Author=
|Permission=
|other_versions=
}}";
}
}
addOnloadHook( FillUploadForm );