novo-elements
Version:
Bullhorn's NOVO Element Repository for Angular 2
41 lines (38 loc) • 1.48 kB
text/typescript
// NG2
import { Component, ElementRef } from '@angular/core';
// APP
import { NovoLabelService } from '../../../../services/novo-label-service';
import { BasePickerResults } from '../base-picker-results/BasePickerResults';
export class PickerResults extends BasePickerResults {
constructor(element: ElementRef, public labels: NovoLabelService) {
super(element);
}
getListElement() {
return this.element.nativeElement.querySelector('novo-list');
}
}