Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Update to input API change.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Nov 13, 2014
1 parent 1a43071 commit 6a5a553
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demos/demo-messages.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
clearTimeout(this.filterThrottle);
}
this.filterThrottle = setTimeout(function() {
var value = this.$.searchInput.inputValue;
var value = this.$.searchInput.value;
this.filteredGroups = value ? null : this.groups;
this.filteredData = this.data.filter(function(o) {
return new RegExp(value, 'i').test(o.name);
Expand Down

0 comments on commit 6a5a553

Please sign in to comment.