mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-20 18:18:56 +00:00
minor changes
This commit is contained in:
parent
84b3500707
commit
d9655861c5
1 changed files with 4 additions and 3 deletions
|
|
@ -708,9 +708,10 @@ CloudClient._getJSONfromFileTable=function()
|
|||
* if full - getting textConent
|
||||
*/
|
||||
(lName.length &&
|
||||
lName[0].title &&
|
||||
(lName = lName[0].title)) ||
|
||||
(lName = lName.textContent);
|
||||
(lName = lName[0])
|
||||
(lName.title &&
|
||||
(lName = lName.title)) ||
|
||||
(lName = lName.textContent);
|
||||
|
||||
/* если это папка - выводим слово dir вместо размера*/
|
||||
var lSize=lIsDir?'dir':lLI[i].getElementsByClassName('size')[0].textContent;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue