Skip to content

Commit

Permalink
fix for doubletext on jQuery
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Lasky committed Aug 11, 2016
1 parent 0809f39 commit 11cc75b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/strand-dropdown/strand-dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@
if (typeof selectedIndex === 'number') {
var selectedItem = this.items[selectedIndex];

label = this.data ? selectedItem.name : selectedItem.textContent.trim();
label = this.data ? selectedItem.name : Polymer.dom(selectedItem).textContent.trim();
}
return label;
},
Expand Down

0 comments on commit 11cc75b

Please sign in to comment.