From fe1609686f01d94963ff7e668c37cf36a05525cf Mon Sep 17 00:00:00 2001 From: Sven Brodny Date: Wed, 21 Feb 2024 12:45:13 +0100 Subject: [PATCH] docs(simple-animations): add constraint how to trigger animation --- .../content/docs/challenges/angular/46-simple-animations.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/src/content/docs/challenges/angular/46-simple-animations.md b/docs/src/content/docs/challenges/angular/46-simple-animations.md index 44966ae..03401c1 100644 --- a/docs/src/content/docs/challenges/angular/46-simple-animations.md +++ b/docs/src/content/docs/challenges/angular/46-simple-animations.md @@ -29,7 +29,8 @@ The goal of this challenge is to add animations, they should run when the user a ## Constraints -Don't use any CSS and utilize Angular's integrated `@angular/animations` API. +- Don't use any CSS and utilize Angular's integrated `@angular/animations` API. +- Don't trigger the animations with a button like in the examples, rather when the user enter or reload the page. ### Level 1