minor changes

This commit is contained in:
coderaiser 2013-02-05 03:56:03 -05:00
parent 5f52fecae1
commit 355a1b0f34

View file

@ -199,15 +199,17 @@
main.sendFile(pParams);
lRet = true;
}else if( Util.isContainStr(lName, [CloudFunc.Fs, CloudFunc.NoJS] ) ||
Util.strCmp(lName, '/') ||
Util.strCmp(lName, 'json') ) {
lRet = main.commander.sendContent({
request : pParams[REQUEST],
response : pParams[RESPONSE],
processing : indexProcessing,
index : Minify.allowed.html ? Minify.getName(INDEX) : INDEX
});
}else if( Util.isContainStr(lName, CloudFunc.FS) ||
Util.isContainStr(lName, CloudFunc.NO_JS ) ||
Util.strCmp(lName, '/') ||
Util.strCmp(lName, 'json') ){
lRet = main.commander.sendContent({
request : pParams[REQUEST],
response : pParams[RESPONSE],
processing : indexProcessing,
index : Minify.allowed.html ? Minify.getName(INDEX) : INDEX
});
}
return lRet;