import {ElementRef} from 'angular2/angular2' import {Component} from 'angular2/src/core/annotations_impl/annotations'; import {View} from 'angular2/src/core/annotations_impl/view'; import {Ion} from '../ion'; /** * ion-scroll is a non-flexboxed scroll area that can * scroll horizontally or vertically. */ @Component({ selector: 'ion-scroll', properties: [ 'scrollX', 'scrollY' ], host: { '[class.scroll-x]': 'scrollX', '[class.scroll-y]': 'scrollY' } }) @View({ template: `