fixed bug with Array.isArray and getElementsByClassName in IE

This commit is contained in:
coderaiser 2012-08-10 07:51:42 -04:00
parent 0ec5c57d2c
commit 3255600f1c
2 changed files with 4 additions and 2 deletions

View file

@ -22,6 +22,8 @@ scroll to needed place.
* Fixed bug with double click on images.
* Fixed bug with Array.isArray and getElementsByClassName in IE.
2012.08.06, Version 0.1.5

View file

@ -292,7 +292,7 @@ CloudClient.Util = (function(){
(pParams_o.parent || document.body).appendChild(element);
if(pParams_o.inner){
element.innerHTML = pParams_o.inner;
element.textContent = pParams_o.inner;
}
}
/* если js-файл уже загружен
@ -1082,7 +1082,7 @@ CloudClient._createFileTable = function(pElem,pJSON)
}
/* заполняем панель новыми элементами */
lElem.innerHTML=CloudFunc.buildFromJSON(pJSON,true);
lElem.innerHTML = CloudFunc.buildFromJSON(pJSON,true);
};
/*