Skip to content

Commit

Permalink
code review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
randyaskin committed Jun 7, 2017
1 parent 11a4dca commit ede758f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ v4.0.0
==================
* rebuild of the px-dropdown component using iron-dropdown and iron-selector
* added new icons
* code review fixes

v3.1.1
==================
Expand Down
4 changes: 2 additions & 2 deletions px-dropdown.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@
target="[[_keyBindingsTarget]]"
on-keys-pressed="_handleKeyPress">
</iron-a11y-keys>
<button id="button" class$="btn dropdown-trigger {{_getDisabledClass(disabled)}} {{_getClass(buttonStyle)}}" on-tap="toggle">
<div id="button" class$="btn dropdown-trigger {{_getDisabledClass(disabled)}} {{_getClass(buttonStyle)}}" on-tap="toggle">
<div id="label" title="{{_displayValueSelected}}" class="dropdown-label">{{_displayValueSelected}}</div>
<template is="dom-if" if="{{_showClearButton(opened,selected,selectedValues,selectedValues.*)}}">
<iron-icon class="dropdown-icon" icon="px:close" on-tap="_clear"></iron-icon>
</template>
<template is="dom-if" if="{{_showChevron(hideChevron,opened,selected,selectedValues,selectedValues.*)}}">
<iron-icon class="dropdown-icon" icon="px:chevron-down"></iron-icon>
</template>
</button>
</div>
<iron-dropdown
id="dropdown"
class="dropdown"
Expand Down

0 comments on commit ede758f

Please sign in to comment.