feature(config) appcache -> appCache

This commit is contained in:
coderaiser 2013-11-11 13:10:59 +00:00
parent 34f2ed7338
commit c91187fed5
4 changed files with 4 additions and 4 deletions

View file

@ -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 */

View file

@ -49,7 +49,7 @@
lData = pData.data,
lAdditional = pData.additional;
if (!Config.appcache)
if (!Config.appCache)
lData = Util.removeStr(lData, [
/* min */
' manifest=/cloudcmd.appcache',

View file

@ -1,6 +1,6 @@
{
"apiURL": "/api/v1",
"appcache": false,
"appСache": false,
"analytics": true,
"localStorage": true,
"minify": true,

View file

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