workshops-de / angular.de

Website of angular.de 🅰️
https://angular.de
13 stars 64 forks source link

html code doesn't work #82

Closed zBugi closed 3 years ago

zBugi commented 3 years ago

Hi i am new to Angular and Webdevelopment but is this working as intendet ? cause when I used this the text allways was hidden even if I pressed the button and fixed that this tag is not closed.

<p>info-box works!</p>
<button (click)="hidden=!hidden">
<p [hidden]="true">{{text}}</p>

I guess what u where trying to show was:

<p>info-box works!</p>
<button (click)="hidden=!hidden">toggle</button>
<p [hidden]="hidden">{{text}}</p>

cause otherwise that gif would not be the compiled code

robinboehm commented 3 years ago

Good catch! Thanks!