diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-07-21 11:29:08 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-07-21 11:29:08 +0200 |
commit | f71d0fa816c40ffee4793a2f71eed2924a177567 (patch) | |
tree | 7b00286630ced96cfc8e4f3271b70e5977d8a7ec /pyload/web/app/scripts/models/ConfigHolder.js | |
parent | converted AllDebrid plugin (diff) | |
download | pyload-f71d0fa816c40ffee4793a2f71eed2924a177567.tar.xz |
fixed saving configs
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 |