2 Polymer('core-menu-button', {
11 * The index of the selected menu item.
17 * Set to true to open the menu.
23 * Set to true to cause the menu popup to be displayed inline rather
24 * than in its own layer.
25 * @attribute inlineMenu
30 * Horizontally align the overlay with the button. Accepted values are
31 * ["left", "center", "right"].
37 * Display the overlay on top or below the button. Accepted values are
44 closeAction: function() {
48 * Toggle the opened state of the dropdown.
52 this.opened
= !this.opened
;
55 * The selected menu item.
60 return this.$.menu
.selection
;