Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Unified Diff: polymer_1.0.4/bower_components/google-hangout-button/demo/index.html

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698