minor changes

This commit is contained in:
coderaiser 2013-01-15 10:12:06 -05:00
parent 3b96138f4c
commit 087d5a7be4
4 changed files with 7 additions and 7 deletions

View file

@ -77,7 +77,6 @@
*/
function appCacheProcessing(){
var lAppCache = srv.AppCache,
lFiles = [
{'//themes.googleusercontent.com/static/fonts/droidsansmono/v4/ns-m2xQYezAtqh7ai59hJUYuTAAIFFn5GTWtryCmBQ4.woff' : './font/DroidSansMono.woff'},
{'//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js' : './lib/client/jquery.js'}];

View file

@ -3,10 +3,10 @@
"appcache" : false,
"cache" : {"allowed" : false},
"minification" : {
"js" : false,
"css" : false,
"html" : false,
"img" : false
"js" : true,
"css" : true,
"html" : true,
"img" : true
},
"github_key" : "891c251b925e4e967fa9",
"github_secret" : "afe9bed1e810c5dc44c4c2a953fc6efb1e5b0545",

View file

@ -113,7 +113,7 @@ var CloudCommander, Util, DOM, $;
lView();
pEvent.preventDefault();
}
};
};
/* добавляем обработчик клавишь */
DOM.addKeyListener(lKeyListener)

View file

@ -51,6 +51,7 @@
if(!this.MinFolder)
this.MinFolder = Minify.MinFolder;
if(!this.Cache)
this.Cache = Minify.Cache;
@ -73,7 +74,7 @@
return lResult;
},
/* minification folder name */
MinFolder : '',
Cache : null