]> git.uio.no Git - u/erikhf/frm.git/blob - src/components/search/search.ts
[search] Make search result clickable
[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     getMoreInfo(orgunit){
14         console.log(orgunit.id);
15     }
16
17
18 }
19
20