minor changes

This commit is contained in:
coderaiser 2013-01-31 09:09:04 -05:00
parent 697541b7d9
commit bce8996549
2 changed files with 4 additions and 3 deletions

View file

@ -2,9 +2,9 @@
"api_url" : "/api/v1",
"appcache" : false,
"minification" : {
"js" : true,
"css" : false,
"html" : true,
"js" : false,
"css" : true,
"html" : false,
"img" : true
},
"logs" : false,

View file

@ -81,6 +81,7 @@ Util = exports || {};
/** for function with i = 0
* @param pN
* @param pFunc
*/
Util.fori = function(pN, pFunc){
var lRet = Util.for(0, pN, pFunc);