Skip to content

Instantly share code, notes, and snippets.

@frankiefu
Created January 24, 2014 04:12
Show Gist options
  • Save frankiefu/8591991 to your computer and use it in GitHub Desktop.
Save frankiefu/8591991 to your computer and use it in GitHub Desktop.
<!doctype html>
<!--
Copyright 2013 The Polymer Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<html>
<head>
<title>polymer-ui-menu</title>
<script src="../platform/platform.js"></script>
<link rel="import" href="polymer-ui-menu.html">
<link rel="import" href="../polymer-ui-menu-item/polymer-ui-menu-item.html">
<link rel="import" href="../polymer-ui-submenu-item/polymer-ui-submenu-item.html">
<link rel="stylesheet" href="../polymer-ui-base/base.css">
<style>
body > polymer-ui-menu {
width: 300px;
}
</style>
</head>
<body class="polymer-ui-body-text" unresolved>
<polymer-ui-menu selected="0" theme="polymer-ui-dark-theme">
<polymer-ui-submenu-item icon="settings" label="Topics">
<polymer-ui-menu-item label="Topics 1"></polymer-ui-menu-item>
<polymer-ui-menu-item label="Topics 2"></polymer-ui-menu-item>
</polymer-ui-submenu-item>
<polymer-ui-submenu-item icon="settings" label="Favorites">
<polymer-ui-menu-item label="Favorites 1"></polymer-ui-menu-item>
<polymer-ui-menu-item label="Favorites 2"></polymer-ui-menu-item>
<polymer-ui-menu-item label="Favorites 3"></polymer-ui-menu-item>
</polymer-ui-submenu-item>
</polymer-ui-menu>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment