Last active
November 27, 2018 14:56
-
-
Save dsternlicht/8d833e4f07979c5b5a76f3a7ee048d7c to your computer and use it in GitHub Desktop.
Angular app component html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="app"> | |
| <button class="modal_opener" (click)="toggleModal()"> | |
| Click Me! I Don't Bite... <span role="img" aria-label="emoji">😛</span> | |
| </button> | |
| <app-modal | |
| [show]="showModal" | |
| [customClass]="'custom_modal_class'" | |
| [closeCallback]="toggleModal" | |
| > | |
| <h2>Told Ya!</h2> | |
| <iframe title="giphy" src="https://giphy.com/embed/l52CGyJ4LZPa0" width="480" height="273" frameBorder="0" className="giphy-embed" allowFullScreen></iframe><p><a href="https://giphy.com/gifs/sandler-sentences-sounding-l52CGyJ4LZPa0">via GIPHY</a></p> | |
| </app-modal> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment