index.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!doctype html>
  2. <!--
  3. @license
  4. Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
  5. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
  6. The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
  7. The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
  8. Code distributed by Google as part of the polymer project is also
  9. subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
  10. -->
  11. <html>
  12. <head>
  13. <meta charset="utf-8">
  14. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  15. <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
  16. <title>paper-dialog demo</title>
  17. <script src="../../../bower_components/webcomponentsjs/webcomponents-lite.js"></script>
  18. <link rel="import" href="../text-input-dialog.html">
  19. <link rel="import" href="../../../bower_components/paper-button/paper-button.html">
  20. <link rel="import" href="../../../bower_components/paper-dialog-scrollable/paper-dialog-scrollable.html">
  21. <link rel="import" href="../../../bower_components/paper-styles/color.html">
  22. <link rel="import" href="../../../bower_components/paper-styles/demo-pages.html">
  23. <link rel="import" href="../../../bower_components/neon-animation/neon-animations.html">
  24. <link rel="import" href="../../../bower_components/paper-dropdown-menu/paper-dropdown-menu.html">
  25. <link rel="import" href="../../../bower_components/paper-menu/paper-menu.html">
  26. <link rel="import" href="../../../bower_components/paper-item/paper-item.html">
  27. <link rel="stylesheet" href="../../../paper-styles/demo.css">
  28. </head>
  29. <body>
  30. <text-input-dialog></text-input-dialog>
  31. <script>
  32. document.querySelector("text-input-dialog").open();
  33. </script>
  34. </body>
  35. </html>