| 1719 | extend(UiConfig, superClass); |
| 1720 | |
| 1721 | function UiConfig() { |
| 1722 | this.renderBottomRestart = bind(this.renderBottomRestart, this); |
| 1723 | this.handleRestartClick = bind(this.handleRestartClick, this); |
| 1724 | this.renderBottomSave = bind(this.renderBottomSave, this); |
| 1725 | this.handleSaveClick = bind(this.handleSaveClick, this); |
| 1726 | this.render = bind(this.render, this); |
| 1727 | this.saveValue = bind(this.saveValue, this); |
| 1728 | this.saveValues = bind(this.saveValues, this); |
| 1729 | this.getValuesPending = bind(this.getValuesPending, this); |
| 1730 | this.getValuesChanged = bind(this.getValuesChanged, this); |
| 1731 | this.createProjector = bind(this.createProjector, this); |
| 1732 | this.updateConfig = bind(this.updateConfig, this); |
| 1733 | this.onOpenWebsocket = bind(this.onOpenWebsocket, this); |
| 1734 | return UiConfig.__super__.constructor.apply(this, arguments); |
| 1735 | } |
| 1736 | |
| 1737 | UiConfig.prototype.init = function() { |
| 1738 | this.save_visible = true; |