├── .github ├── CODEOWNERS └── ISSUE_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .travis.yml ├── CONTRIBUTING.md ├── README.md ├── bower.json ├── demo ├── .!23217!donuts.png ├── .!25437!donuts.png ├── donuts.png ├── index.html └── test-button.js ├── formatconfig.json ├── manifest.json ├── package.json ├── paper-tooltip.js ├── test ├── basic.html ├── index.html ├── test-button.js └── test-icon.js └── wct.conf.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @bicknellr 2 | /.travis.yml @azakus 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/bower.json -------------------------------------------------------------------------------- /demo/.!23217!donuts.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/.!25437!donuts.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/donuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/demo/donuts.png -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/test-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/demo/test-button.js -------------------------------------------------------------------------------- /formatconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/formatconfig.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/package.json -------------------------------------------------------------------------------- /paper-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/paper-tooltip.js -------------------------------------------------------------------------------- /test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/test/basic.html -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/test/index.html -------------------------------------------------------------------------------- /test/test-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/test/test-button.js -------------------------------------------------------------------------------- /test/test-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/test/test-icon.js -------------------------------------------------------------------------------- /wct.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/paper-tooltip/HEAD/wct.conf.json --------------------------------------------------------------------------------