Hello,

Given the following snippet:

<!-- Main Toolbar -->
<paper-toolbar id="mainToolbar">
  <paper-icon-button id="paperToggle" icon="menu" 
paper-drawer-toggle></paper-icon-button>
    <div class="app-name">Dashbord</div>
    <span class="flex"></span>
    <paper-menu-button horizontalAlign="right" horizontalOffset="20" 
verticalAlign="top" verticalOffset="50">
      <paper-icon-button icon="apps" 
class="dropdown-trigger"></paper-icon-button>
      <paper-menu class="dropdown-content">
        <paper-item>Share</paper-item>
        <paper-item>Settings</paper-item>
        <paper-item>Help</paper-item>
      </paper-menu>
    </paper-menu-button>
</paper-toolbar>

Is there any reasons why the menu will still show on the top right corner 
and have of the content off screen?

If I hard code the values inside the element it works as expected:

<template>
    <div id="trigger" on-tap="open">
      <content select=".dropdown-trigger"></content>
    </div>
    <iron-dropdown
      id="dropdown"
      opened="{{opened}}"
      horizontal-align="right"
      vertical-align="[[verticalAlign]]"
      horizontal-offset="50"
      vertical-offset="[[verticalOffset]]"
      open-animation-config="[[openAnimationConfig]]"
      close-animation-config="[[closeAnimationConfig]]"
      no-animations="[[noAnimations]]"
      focus-target="[[_dropdownContent]]">
      <paper-material class="dropdown-content">
        <content id="content" select=".dropdown-content"></content>
      </paper-material>
    </iron-dropdown>
  </template>

Any input would be greatly appreciated.

Thank you.
  

Follow Polymer on Google+: plus.google.com/107187849809354688692
--- 
You received this message because you are subscribed to the Google Groups 
"Polymer" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/polymer-dev/20844f74-71ca-4cbe-bc3c-70d27d8370fa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to