(config)
| 1281 | extend(ConfigStorage, superClass); |
| 1282 | |
| 1283 | function ConfigStorage(config) { |
| 1284 | this.config = config; |
| 1285 | this.createSection = bind(this.createSection, this); |
| 1286 | this.items = []; |
| 1287 | this.createSections(); |
| 1288 | this.setValues(this.config); |
| 1289 | } |
| 1290 | |
| 1291 | ConfigStorage.prototype.setValues = function(values) { |
| 1292 | var i, item, len, ref, results, section; |