1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!doctype html>
- <!--
- @license
- Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
- This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
- The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
- The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
- Code distributed by Google as part of the polymer project is also
- subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
- -->
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
- <title>paper-dialog demo</title>
- <script src="../../../bower_components/webcomponentsjs/webcomponents-lite.js"></script>
- <link rel="import" href="../text-input-dialog.html">
- <link rel="import" href="../../../bower_components/paper-button/paper-button.html">
- <link rel="import" href="../../../bower_components/paper-dialog-scrollable/paper-dialog-scrollable.html">
- <link rel="import" href="../../../bower_components/paper-styles/color.html">
- <link rel="import" href="../../../bower_components/paper-styles/demo-pages.html">
- <link rel="import" href="../../../bower_components/neon-animation/neon-animations.html">
- <link rel="import" href="../../../bower_components/paper-dropdown-menu/paper-dropdown-menu.html">
- <link rel="import" href="../../../bower_components/paper-menu/paper-menu.html">
- <link rel="import" href="../../../bower_components/paper-item/paper-item.html">
- <link rel="stylesheet" href="../../../paper-styles/demo.css">
- </head>
- <body>
- <text-input-dialog></text-input-dialog>
- <script>
- document.querySelector("text-input-dialog").open();
- </script>
- </body>
- </html>
|