Advertisement
Guest User

Untitled

a guest
May 27th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. filter() {
  2. if (this.query !== ""){
  3. this.filteredList = this.names.filter(function(el){
  4. return el.toLowerCase().indexOf(this.query.toLowerCase()) > -1;
  5. }.bind(this));
  6. }else{
  7. this.filteredList = [];
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement