Skip to content

Instantly share code, notes, and snippets.

@klauskohut
Created July 30, 2014 18:57
Show Gist options
  • Select an option

  • Save klauskohut/0e9b76a1c2442e13d066 to your computer and use it in GitHub Desktop.

Select an option

Save klauskohut/0e9b76a1c2442e13d066 to your computer and use it in GitHub Desktop.
designer
<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