Advertisement
Guest User

Untitled

a guest
Nov 26th, 2015
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. @View({
  2. template: `
  3. <input #input (keyup)="artistSearch($event, input.value)" type="text">
  4. `
  5. })
  6.  
  7. export class Search {
  8.  
  9. artistSearch($event, name) {
  10. setTimeout(() => {
  11. this.service.artistSearch(name)
  12. .subscribe((data) => {
  13. this.artists = data.response.artists;
  14. });
  15. }, 400);
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement