We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 141eaee commit 17b0accCopy full SHA for 17b0acc
src/app/pipes/pipes.ts
@@ -7,15 +7,13 @@ import {Pipes} from 'angular2/change_detection';
7
/*
8
* App Pipes
9
*/
10
-/* TODO: Create these pipe classes
11
-import {capitalize} from './CapitalizePipe';
+import {capitalize} from './Capitalize/Capitalize-Pipe';
12
import {rxAsync} from './RxPipe';
13
-*/
14
15
export var appPipes = [
16
Pipes.extend({
17
- //'async': rxAsync,
18
- //'capitalize': capitalize
+ 'async': rxAsync,
+ 'capitalize': capitalize
19
// add more pipes to this Map
20
})
21
];
0 commit comments