Index: polymer_1.0.4/bower_components/google-hangout-button/demo/index.html |
diff --git a/polymer_1.0.4/bower_components/google-hangout-button/demo/index.html b/polymer_1.0.4/bower_components/google-hangout-button/demo/index.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..fd3c0b0dac7e994005c5948126413f215d4e04e1 |
--- /dev/null |
+++ b/polymer_1.0.4/bower_components/google-hangout-button/demo/index.html |
@@ -0,0 +1,46 @@ |
+<!doctype html> |
+<html> |
+<head> |
+ <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes"> |
+ |
+ <title>google-hangout-button Demo</title> |
+ |
+ <style> |
+ section { |
+ max-width: 500px; |
+ } |
+ section > div { |
+ padding: 10px; |
+ } |
+ </style> |
+ |
+ <script src="../../webcomponentsjs/webcomponents-lite.js"></script> |
+ |
+ <link rel="import" href="../google-hangout-button.html"> |
+ <link rel="import" href="../../iron-flex-layout/classes/iron-flex-layout.html"> |
+</head> |
+<body> |
+ <section> |
+ <div class="layout horizontal center"> |
+ <span class="flex">Default button</span> |
+ <span class="flex"><google-hangout-button></google-hangout-button></span> |
+ </div> |
+ <div class="layout horizontal center"> |
+ <span class="flex">Narrow button</span> |
+ <span class="flex"><google-hangout-button width="72"></google-hangout-button></span> |
+ </div> |
+ <div class="layout horizontal center"> |
+ <span class="flex">Wide Hangout on Air button</span> |
+ <span class="flex"><google-hangout-button type="onair" width="175"></google-hangout-button></span> |
+ </div> |
+ <div class="layout horizontal center"> |
+ <span class="flex">Automatically launch Hangout app</span> |
+ <span class="flex"> |
+ <google-hangout-button |
+ apps='[{"app_id" : "184219133185", "start_data" : "dQw4w9WgXcQ", "app_type" : "ROOM_APP" }]' |
+ ></google-hangout-button> |
+ </span> |
+ </div> |
+ </section> |
+</body> |
+</html> |