Get the index of the last triggered option.
()
| 1049 | |
| 1050 | /** Get the index of the last triggered option. */ |
| 1051 | private _getLastTriggeredIndex() { |
| 1052 | const index = this.options.toArray().indexOf(this._lastTriggered!); |
| 1053 | return index === -1 ? null : index; |
| 1054 | } |
| 1055 | } |
| 1056 | |
| 1057 | /** Change event that is fired whenever the value of the listbox changes. */ |
no outgoing calls
no test coverage detected