mirror of
				https://github.com/pierre42100/ComunicWeb
				synced 2025-11-04 12:14:12 +00:00 
			
		
		
		
	Added an attribute to createElem2 to ease translation.
This commit is contained in:
		@@ -39,6 +39,7 @@ function createElem(nodeType, appendTo){
 | 
			
		||||
 * @info {String} value The value of the new element
 | 
			
		||||
 * @info {String} placeholder The placeholder of the new element
 | 
			
		||||
 * @info {String} innerHTML Specify the html content of the newly created element
 | 
			
		||||
 * @info {String} innerLang Specify the key of the lang to use to fill the element
 | 
			
		||||
 * @info {boolean} disabled Set whether the field should be disabled or not (input only)
 | 
			
		||||
 * @return {HTMLElement} The newly created element
 | 
			
		||||
 */
 | 
			
		||||
@@ -101,6 +102,9 @@ function createElem2(infos){
 | 
			
		||||
	//Specify node content
 | 
			
		||||
	if(infos.innerHTML)
 | 
			
		||||
		newElem.innerHTML = infos.innerHTML;
 | 
			
		||||
	
 | 
			
		||||
	if(infos.innerLang)
 | 
			
		||||
		newElem.innerHTML = lang(infos.innerLang);
 | 
			
		||||
 | 
			
		||||
	//Set field state
 | 
			
		||||
	if(infos.disabled)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user