diff --git a/src/demo-app/gestures/gestures-demo.html b/src/demo-app/gestures/gestures-demo.html index 9f2467659efb..0f1535fc34fd 100644 --- a/src/demo-app/gestures/gestures-demo.html +++ b/src/demo-app/gestures/gestures-demo.html @@ -1,10 +1,9 @@
-
+
Drag, swipe, or press me.
-

Drag: {{dragCount}}

Pan: {{panCount}}

Longpress: {{longpressCount}}

Press: {{pressCount}}

diff --git a/src/demo-app/gestures/gestures-demo.ts b/src/demo-app/gestures/gestures-demo.ts index 13df7c29a2aa..693a1b612cbc 100644 --- a/src/demo-app/gestures/gestures-demo.ts +++ b/src/demo-app/gestures/gestures-demo.ts @@ -7,7 +7,6 @@ import {Component} from '@angular/core'; styleUrls: ['gestures-demo.css'], }) export class GesturesDemo { - dragCount: number = 0; panCount: number = 0; pressCount: number = 0; longpressCount: number = 0;