diff options
Diffstat (limited to 'pyload/web/app/scripts/models/ConfigHolder.js')
-rw-r--r-- | pyload/web/app/scripts/models/ConfigHolder.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/web/app/scripts/models/ConfigHolder.js b/pyload/web/app/scripts/models/ConfigHolder.js index 40efbc7c0..638b2d644 100644 --- a/pyload/web/app/scripts/models/ConfigHolder.js +++ b/pyload/web/app/scripts/models/ConfigHolder.js @@ -8,7 +8,7 @@ define(['jquery', 'backbone', 'underscore', 'app', './ConfigItem'], name: '', label: '', description: '', - long_description: null, + explanation: null, // simple list but no collection items: null, info: null @@ -52,7 +52,7 @@ define(['jquery', 'backbone', 'underscore', 'app', './ConfigItem'], }, isLoaded: function() { - return this.has('items') || this.has('long_description'); + return this.has('items') || this.has('explanation'); }, // check if any of the items has changes |