mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-19 01:17:18 +00:00
fixed bug with appcache
This commit is contained in:
parent
b90613b35e
commit
6bb9380b3a
2 changed files with 6 additions and 6 deletions
|
|
@ -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');
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue