Skip to content
This repository was archived by the owner on Dec 19, 2024. It is now read-only.
Open
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions paper-dropdown-menu-light.html
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@
no-animations="[[noAnimations]]"
on-iron-select="_onIronSelect"
on-iron-deselect="_onIronDeselect"
fit-into="[[fitInto]]"
opened="{{opened}}"
close-on-activate
allow-outside-scroll="[[allowOutsideScroll]]">
Expand Down Expand Up @@ -424,6 +425,13 @@
value: 'right'
},

/**
* The element to fit `this` into.
*/
fitInto: {
type: Object
},

/**
* The orientation against which to align the menu dropdown
* vertically relative to the dropdown trigger.
Expand Down
8 changes: 8 additions & 0 deletions paper-dropdown-menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
on-iron-select="_onIronSelect"
on-iron-deselect="_onIronDeselect"
opened="{{opened}}"
fit-into="[[fitInto]]"
close-on-activate
allow-outside-scroll="[[allowOutsideScroll]]">
<div class="dropdown-trigger">
Expand Down Expand Up @@ -258,6 +259,13 @@
value: 'top'
},

/**
* The element to fit `this` into.
*/
fitInto: {
type: Object
},

/**
* If true, the `horizontalAlign` and `verticalAlign` properties will
* be considered preferences instead of strict requirements when
Expand Down