| 1514 | extend(ConfigView, superClass); |
| 1515 | |
| 1516 | function ConfigView() { |
| 1517 | this.renderValueSelect = bind(this.renderValueSelect, this); |
| 1518 | this.renderValueCheckbox = bind(this.renderValueCheckbox, this); |
| 1519 | this.renderValueTextarea = bind(this.renderValueTextarea, this); |
| 1520 | this.autosizeTextarea = bind(this.autosizeTextarea, this); |
| 1521 | this.renderValueText = bind(this.renderValueText, this); |
| 1522 | this.handleCheckboxChange = bind(this.handleCheckboxChange, this); |
| 1523 | this.handleInputChange = bind(this.handleInputChange, this); |
| 1524 | this.renderSectionItem = bind(this.renderSectionItem, this); |
| 1525 | this.handleResetClick = bind(this.handleResetClick, this); |
| 1526 | this.renderSection = bind(this.renderSection, this); |
| 1527 | this; |
| 1528 | } |
| 1529 | |
| 1530 | ConfigView.prototype.render = function() { |
| 1531 | return this.config_storage.items.map(this.renderSection); |