| Index: pkg/polymer/lib/elements/polymer-ui-menu-item/demo.html
|
| diff --git a/pkg/polymer/lib/elements/polymer-ui-menu-item/demo.html b/pkg/polymer/lib/elements/polymer-ui-menu-item/demo.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..08b2816930a3000914782370c76465d2bf17b8f8
|
| --- /dev/null
|
| +++ b/pkg/polymer/lib/elements/polymer-ui-menu-item/demo.html
|
| @@ -0,0 +1,33 @@
|
| +
|
| +<!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-item</title>
|
| + <script src="../platform/platform.js"></script>
|
| + <link rel="import" href="polymer-ui-menu-item.html">
|
| + <link rel="stylesheet" href="../polymer-ui-base/base.css">
|
| + <style>
|
| + section {
|
| + width: 300px;
|
| + padding: 10px;
|
| + }
|
| + </style>
|
| + </head>
|
| + <body class="polymer-ui-body-text" unresolved>
|
| + <h2>polymer-ui-light-theme</h2>
|
| + <section theme="polymer-ui-light-theme">
|
| + <polymer-ui-menu-item icon="settings" label="Settings"></polymer-ui-menu-item>
|
| + <polymer-ui-menu-item icon="dialog" label="Dialog" active></polymer-ui-menu-item>
|
| + </section>
|
| + <h2>polymer-ui-dark-theme</h2>
|
| + <section style="background: #333;" theme="polymer-ui-dark-theme">
|
| + <polymer-ui-menu-item icon="settings" label="Settings"></polymer-ui-menu-item>
|
| + <polymer-ui-menu-item icon="dialog" label="Dialog" active></polymer-ui-menu-item>
|
| + </section>
|
| + </body>
|
| +</html>
|
|
|