]> git.uio.no Git - u/erikhf/frm.git/blob - src/components/search/search.ts
semi working live search
[u/erikhf/frm.git] / src / components / search / search.ts
1 import {Component, View, CORE_DIRECTIVES} from 'angular2/angular2';
2 import {LiveSearch} from "./livesearch";
3
4 @Component({
5     selector: 'mou-search',
6     directives: [CORE_DIRECTIVES, LiveSearch],
7     templateUrl: './components/search/search.html'
8 })
9 export class Search {
10     orgunits: Array<any> = [];
11     loading: boolean = false;
12
13     constructor(){
14     }
15 }
16
17