| 13 | _entry; |
| 14 | |
| 15 | constructor() { |
| 16 | super(templateText); |
| 17 | this._propertiesNode = this.$('#properties'); |
| 18 | this._codeSelectNode = this.$('#codeSelect'); |
| 19 | this._disassemblyNode = this.$('#disassembly'); |
| 20 | this._feedbackVectorNode = this.$('#feedbackVector'); |
| 21 | this._selectionHandler = new SelectionHandler(this._disassemblyNode); |
| 22 | |
| 23 | this._codeSelectNode.onchange = this._handleSelectCode.bind(this); |
| 24 | this.$('#selectedRelatedButton').onclick = |
| 25 | this._handleSelectRelated.bind(this) |
| 26 | } |
| 27 | |
| 28 | set timeline(timeline) { |
| 29 | this._timeline = timeline; |