mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
fixed bug with Array.isArray and getElementsByClassName in IE
This commit is contained in:
parent
0ec5c57d2c
commit
3255600f1c
2 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue