Created
July 30, 2014 18:57
-
-
Save klauskohut/0e9b76a1c2442e13d066 to your computer and use it in GitHub Desktop.
designer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link rel="import" href="../components/polymer/polymer.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| #core_menu { | |
| font-size: 16px; | |
| left: 460px; | |
| top: 380px; | |
| position: absolute; | |
| } | |
| </style> | |
| <core-menu selected="1" selectedindex="1" id="core_menu"> | |
| <core-submenu label="Topics" icon="settings" valueattr="name" id="core_submenu"> | |
| <core-item label="Topic 1" size="24" id="core_item" horizontal center layout></core-item> | |
| <core-item label="Topic 2" size="24" id="core_item1" horizontal center layout></core-item> | |
| </core-submenu> | |
| </core-menu> | |
| </template> | |
| <script> | |
| Polymer('my-element', { | |
| }); | |
| </script> | |
| </polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment