Skip to content

Instantly share code, notes, and snippets.

@dsternlicht
Last active November 27, 2018 14:56
Show Gist options
  • Select an option

  • Save dsternlicht/8d833e4f07979c5b5a76f3a7ee048d7c to your computer and use it in GitHub Desktop.

Select an option

Save dsternlicht/8d833e4f07979c5b5a76f3a7ee048d7c to your computer and use it in GitHub Desktop.
Angular app component html
<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