fixed bug with appcache

This commit is contained in:
coderaiser 2013-04-16 05:04:39 -04:00
parent b90613b35e
commit 6bb9380b3a
2 changed files with 6 additions and 6 deletions

View file

@ -85,9 +85,12 @@
lFONT_LOCAL = './font/DroidSansMono.woff',
lJQUERY_REMOTE = '//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js',
lJQUERY_LOCAL = './lib/client/jquery.js',
lFiles = [
{ lFONT_REMOTE : lFONT_LOCAL },
{ lJQUERY_REMOTE : lJQUERY_LOCAL }];
lFiles = [];
lFiles[0] = {};
lFiles[0][lFONT_REMOTE] = lFONT_LOCAL;
lFiles[1] = {};
lFiles[1][lJQUERY_REMOTE] = lJQUERY_LOCAL;
if(Config.minification.css)
lFiles.push('node_modules/minify/min/all.min.css');

View file

@ -169,10 +169,7 @@
log = Util.retExec(Util.log),
lAssync = 0;
console.log(n);
function stat(pStat){
console.log(pStat);
var lRet = Util.checkObjTrue(pStat, 'params') &&
Util.checkObjTrue(pStat.params, 'name');