Added an attribute to createElem2 to ease translation.

This commit is contained in:
Pierre HUBERT 2018-08-04 09:51:01 +02:00
parent f859abcb2f
commit e1c3b0c002

View File

@ -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
*/
@ -102,6 +103,9 @@ function createElem2(infos){
if(infos.innerHTML)
newElem.innerHTML = infos.innerHTML;
if(infos.innerLang)
newElem.innerHTML = lang(infos.innerLang);
//Set field state
if(infos.disabled)
infos.disabled = true;