diff --git a/HELP.md b/HELP.md index f9c49858..a0074a69 100644 --- a/HELP.md +++ b/HELP.md @@ -146,7 +146,7 @@ All main configuration could be done via [config.json](json/config.json "Config" ```js { "api_url" :"/api/v1", - "appcache" : false, /* cache files for offline use */ + "appCache" : false, /* cache files for offline use */ "analytics" : true, /* google analytics suport */ "localStorage" : true, /* cache directory data */ "minify" : true /* minification of js,css,html and img */ diff --git a/cloudcmd.js b/cloudcmd.js index d0e7c997..46b5912d 100644 --- a/cloudcmd.js +++ b/cloudcmd.js @@ -49,7 +49,7 @@ lData = pData.data, lAdditional = pData.additional; - if (!Config.appcache) + if (!Config.appCache) lData = Util.removeStr(lData, [ /* min */ ' manifest=/cloudcmd.appcache', diff --git a/json/config.json b/json/config.json index 91ab8dd8..bde9a007 100644 --- a/json/config.json +++ b/json/config.json @@ -1,6 +1,6 @@ { "apiURL": "/api/v1", - "appcache": false, + "appДache": false, "analytics": true, "localStorage": true, "minify": true, diff --git a/lib/client/listeners.js b/lib/client/listeners.js index 72cb59db..7a05b36b 100644 --- a/lib/client/listeners.js +++ b/lib/client/listeners.js @@ -193,7 +193,7 @@ var Util, DOM, CloudCmd; function appCache() { getConfig(function(config) { - var isAppCache = config.appcache, + var isAppCache = config.appCache, appCache = window.applicationCache; if (isAppCache && appCache)