chore(): remove use of @View

This commit is contained in:
Adam Bradley
2015-10-09 09:15:02 -05:00
parent 9255d473f1
commit 0cac4d9a2e
27 changed files with 134 additions and 337 deletions

View File

@@ -1,4 +1,4 @@
import {Component, View, ElementRef, Optional, Host} from 'angular2/angular2';
import {Component, ElementRef, Optional} from 'angular2/angular2';
import {Ion} from '../ion';
import {IonicConfig} from '../../config/config';
@@ -25,11 +25,7 @@ import {ScrollTo} from '../../animations/scroll-to';
*/
@Component({
selector: 'ion-content',
inputs: [
'parallax'
]
})
@View({
inputs: ['parallax'],
template: '<scroll-content><ng-content></ng-content></scroll-content>'
})
export class Content extends Ion {