Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(select): fix select-menu width being incorrectly computed
Browse files Browse the repository at this point in the history
  • Loading branch information
rschmukler committed Jul 6, 2015
1 parent ba60122 commit 18d8ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/select/select.js
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,7 @@ function SelectProvider($$interimElementProvider) {

function animateSelect(scope, element, opts) {
var containerNode = element[0],
targetNode = opts.target[0].firstElementChild.firstElementChild, // target the first span, functioning as the label
targetNode = opts.target[0].firstElementChild, // target the label
parentNode = opts.parent[0],
selectNode = opts.selectEl[0],
contentNode = opts.contentEl[0],
Expand Down

0 comments on commit 18d8ae0

Please sign in to comment.