()
| 19 | _logEntryMouseOverHandler = this._logEntryMouseOverHandler.bind(this); |
| 20 | |
| 21 | constructor() { |
| 22 | super(templateText); |
| 23 | this.groupKey.addEventListener('change', e => this.requestUpdate()); |
| 24 | this.showAllRadio.onclick = _ => this._showEntries(this._timeline); |
| 25 | this.showTimerangeRadio.onclick = _ => |
| 26 | this._showEntries(this._timeline.selectionOrSelf); |
| 27 | this.showSelectionRadio.onclick = _ => |
| 28 | this._showEntries(this._selectedLogEntries); |
| 29 | } |
| 30 | |
| 31 | static get observedAttributes() { |
| 32 | return ['title']; |
nothing calls this directly
no test coverage detected