From bce89965498eb612bdefcbbeca149c878996c40a Mon Sep 17 00:00:00 2001 From: coderaiser Date: Thu, 31 Jan 2013 09:09:04 -0500 Subject: [PATCH] minor changes --- json/config.json | 6 +++--- lib/util.js | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/json/config.json b/json/config.json index a8cd4570..05c7219d 100644 --- a/json/config.json +++ b/json/config.json @@ -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, diff --git a/lib/util.js b/lib/util.js index d1448d6f..1997ef8a 100644 --- a/lib/util.js +++ b/lib/util.js @@ -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);