]> git.uio.no Git - u/erikhf/frm.git/blob - src/components/search/livesearch.ts
[search] experimenting with pipes
[u/erikhf/frm.git] / src / components / search / livesearch.ts
1 import {View, CORE_DIRECTIVES} from 'angular2/angular2';
2 import {Pipe} from 'angular2/angular2';
3
4
5
6 @Pipe({
7     name: 'livesearch'
8 })
9 export class Livesearch {
10     transform(value, args) { return value * 2; }
11 }
12