Skip to content

Instantly share code, notes, and snippets.

@sharikovvladislav
Created September 30, 2017 11:40
Show Gist options
  • Save sharikovvladislav/0099863595a391a849b0f0d9578cdd88 to your computer and use it in GitHub Desktop.
Save sharikovvladislav/0099863595a391a849b0f0d9578cdd88 to your computer and use it in GitHub Desktop.
@Component({
selector: 'tags-internal-auto-complete-results',
template: `
<div class="container">
<span *ngFor="let tag of data" (click)="selectTag.emit(tag);" class="tag">
{{tag.name}}
</span>
</div>
`,
styleUrls: ['../styles/tags-auto-complete.styles.css'],
styles: [
`
.container {
border: 1px solid #9e9e9e;
padding: 2px;
margin-top: 1px;
}
`
],
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment