
The directory contains code authored in a style that makes it transpilable to dart. As such, these are not idiomatic examples of Angular 2 usage. The main purpose of this directory is to enable experimentation with Angular within the angular/angular repository. Closes #4342 Closes #4639
21 lines
542 B
TypeScript
21 lines
542 B
TypeScript
import {bootstrap} from 'angular2/bootstrap';
|
|
import {Component, View} from 'angular2/core';
|
|
|
|
@Component({selector: 'gestures-app'})
|
|
@View({templateUrl: 'template.html'})
|
|
class GesturesCmp {
|
|
swipeDirection: string = '-';
|
|
pinchScale: number = 1;
|
|
rotateAngle: number = 0;
|
|
|
|
onSwipe(event): void { this.swipeDirection = event.deltaX > 0 ? 'right' : 'left'; }
|
|
|
|
onPinch(event): void { this.pinchScale = event.scale; }
|
|
|
|
onRotate(event): void { this.rotateAngle = event.rotation; }
|
|
}
|
|
|
|
export function main() {
|
|
bootstrap(GesturesCmp);
|
|
}
|