diff --git a/ChangeLog b/ChangeLog index 6971ee77..9ec6842c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -136,8 +136,6 @@ while menu is showing now. * Added ability to remove /fs/no-js when go up to root directory. -* Removed reflows maded by js. - 2012.12.12, Version 0.1.8 diff --git a/html/auth/github.html b/html/auth/github.html index 01c5f847..8a2e8a1e 100644 --- a/html/auth/github.html +++ b/html/auth/github.html @@ -1,27 +1,27 @@ - - - - - - + + + + + + \ No newline at end of file diff --git a/json/config.json b/json/config.json index e53c7ca4..609d9776 100644 --- a/json/config.json +++ b/json/config.json @@ -2,7 +2,7 @@ "api_url" : "/api/v1", "appcache" : false, "minification" : { - "js" : true, + "js" : false, "css" : true, "html" : true, "img" : true diff --git a/lib/client.js b/lib/client.js index ea909564..3ec032d4 100644 --- a/lib/client.js +++ b/lib/client.js @@ -337,6 +337,13 @@ function baseInit(pCallBack){ DOM.Cache.set('/', CloudCmd._getJSONfromFileTable()); }); + /* выделяем строку с первым файлом */ + var lFmHeader = DOM.getByClass('fm-header'); + if(lFmHeader && lFmHeader[0]){ + var lCurrent = lFmHeader[0].nextSibling; + DOM.setCurrentFile(lCurrent); + } + /* показываем элементы, которые будут работать только, если есть js */ var lFM = DOM.getById('fm'); lFM.className='localstorage';