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

Allow restoreFocusOnClose to be set on paper-dropdown-menu-lite #230

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions paper-dropdown-menu-light.html
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,8 @@
on-iron-deselect="_onIronDeselect"
opened="{{opened}}"
close-on-activate
allow-outside-scroll="[[allowOutsideScroll]]">
allow-outside-scroll="[[allowOutsideScroll]]"
restore-focus-on-close="[[restoreFocusOnClose]]">
<div class="dropdown-trigger">
<label class$="[[_computeLabelClass(noLabelFloat,alwaysFloatLabel,hasContent)]]">
[[label]]
Expand Down Expand Up @@ -436,7 +437,15 @@
hasContent: {
type: Boolean,
readOnly: true
}
},

/**
* Whether focus should be restored to the dropdown when the menu closes.
*/
restoreFocusOnClose: {
type: Boolean,
value: true
},
},

listeners: {
Expand Down