(e)
| 772 | } |
| 773 | |
| 774 | onClick (e) { |
| 775 | const newSelection = $(e.target).closest('.treema-search-result-row') |
| 776 | if (!newSelection.length) { return super.onClick(e) } |
| 777 | this.getSelectedResultEl().removeClass('treema-search-selected') |
| 778 | newSelection.addClass('treema-search-selected') |
| 779 | this.saveChanges() |
| 780 | this.flushChanges() |
| 781 | return this.display() |
| 782 | } |
| 783 | |
| 784 | shouldTryToRemoveFromParent () { |
| 785 | if (this.data != null) { return } |
nothing calls this directly
no test coverage detected