Commit 390240fa authored by ibuler's avatar ibuler

[update] merge

parents 922b9684 c87df730
import {Injectable, EventEmitter} from '@angular/core';
@Injectable()
export class TreeFilterService {
onFilter: EventEmitter<string> = new EventEmitter<string>();
filter(q: string) {
if (q) {
console.log('Emit key to filter...: ', q);
this.onFilter.emit(q);
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment