diff --git a/aio/content/examples/animations/src/app/animations.ts b/aio/content/examples/animations/src/app/animations.ts index d525647354..8b6abd5ec7 100644 --- a/aio/content/examples/animations/src/app/animations.ts +++ b/aio/content/examples/animations/src/app/animations.ts @@ -32,15 +32,15 @@ export const slideInAnimation = // #enddocregion style-view // #docregion query query(':enter', [ - style({ left: '-100%'}) + style({ left: '-100%' }) ]), query(':leave', animateChild()), group([ query(':leave', [ - animate('300ms ease-out', style({ left: '100%'})) + animate('300ms ease-out', style({ left: '100%' })) ]), query(':enter', [ - animate('300ms ease-out', style({ left: '0%'})) + animate('300ms ease-out', style({ left: '0%' })) ]) ]), query(':enter', animateChild()), @@ -56,15 +56,15 @@ export const slideInAnimation = }) ]), query(':enter', [ - style({ left: '-100%'}) + style({ left: '-100%' }) ]), query(':leave', animateChild()), group([ query(':leave', [ - animate('200ms ease-out', style({ left: '100%'})) + animate('200ms ease-out', style({ left: '100%' })) ]), query(':enter', [ - animate('300ms ease-out', style({ left: '0%'})) + animate('300ms ease-out', style({ left: '0%' })) ]) ]), query(':enter', animateChild()), diff --git a/aio/content/examples/animations/src/app/app.component.html b/aio/content/examples/animations/src/app/app.component.html index 1deca03101..78d1655313 100644 --- a/aio/content/examples/animations/src/app/app.component.html +++ b/aio/content/examples/animations/src/app/app.component.html @@ -17,7 +17,7 @@ Toggle All Animations -