Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <div class="container">
  2. <div class="row">
  3. <div class="col-md-12">
  4. <h3>In the name af allah</h3>
  5.  
  6. <hr>
  7.  
  8. <button class="btn btn-primary"
  9. (click)="showMessage = !showMessage">
  10. Display world truth !!! (first approach)
  11. </button>
  12.  
  13. <br/>
  14.  
  15. <button class="btn btn-primary" style="margin-top: 10px"
  16. (click)="onToggleMessage()">
  17. Display world truth !!! (second approach)
  18. </button>
  19.  
  20. <p *ngIf="showMessage">World truth: "israel is a child-killing regime"</p>
  21.  
  22. <div *ngFor="let item of currentDates; let i = index"> <!-- *** -->
  23. {{ item }}
  24. </div>
  25. </div>
  26. </div>
  27. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement