├── .gitignore ├── README.md ├── index.html ├── tests ├── tests.html ├── index.html └── google-hangout-button-basic.html ├── LICENSE ├── bower.json ├── demo └── index.html └── google-hangout-button.html /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | google-hangout-button 2 | ===================== 3 | 4 | See https://elements.polymer-project.org/elements/google-hangout-button 5 | 6 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tests/tests.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 14 | -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Runs all tests 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2014 Google Inc 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | 15 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "google-hangout-button", 3 | "version": "1.0.2", 4 | "homepage": "http://googlewebcomponents.github.io/google-hangout-button", 5 | "description": "Google Hangout button web component", 6 | "main": "google-hangout-button.html", 7 | "authors": [ 8 | "Ewa Gasperowicz" 9 | ], 10 | "license": "Apache-2.0", 11 | "ignore": [ 12 | "/.*", 13 | "/test/" 14 | ], 15 | "keywords": [ 16 | "web-component", 17 | "web-components", 18 | "polymer", 19 | "hangouts", 20 | "google" 21 | ], 22 | "dependencies": { 23 | "polymer": "Polymer/polymer#^1.0.0", 24 | "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0", 25 | "google-apis": "GoogleWebComponents/google-apis#^1.0.0" 26 | }, 27 | "devDependencies": { 28 | "polymer-test-tools": "Polymer/polymer-test-tools#~0.5.6", 29 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.2", 30 | "sinon-browser-only": "~1.12.1" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | google-hangout-button Demo 7 | 8 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 |
25 | Default button 26 | 27 |
28 |
29 | Narrow button 30 | 31 |
32 |
33 | Wide Hangout on Air button 34 | 35 |
36 |
37 | Automatically launch Hangout app 38 | 39 | 42 | 43 |
44 |
45 | 46 | 47 | -------------------------------------------------------------------------------- /tests/google-hangout-button-basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | google-plusone Basic Tests 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 21 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /google-hangout-button.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 14 | 15 | 20 | 24 | 25 | 143 | --------------------------------------------------------------------------------