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);