├── CONTRIBUTING.md ├── LICENSE ├── README.md └── photowall ├── .bowerrc ├── .editorconfig ├── .gitignore ├── README.md ├── app ├── elements │ ├── elements.html │ ├── flickr-gallery │ │ └── flickr-gallery.html │ └── presentation-api │ │ └── presentation-api.html ├── favicon.ico ├── index.html ├── receiver.html ├── scripts │ ├── app.js │ ├── constants.js │ ├── presentation_polyfill.js │ └── receiver.js └── styles │ ├── app-theme.html │ ├── main.css │ └── receiver.css ├── bower.json ├── gulpfile.js └── package.json /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/README.md -------------------------------------------------------------------------------- /photowall/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /photowall/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/.editorconfig -------------------------------------------------------------------------------- /photowall/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | bower_components 4 | .tmp 5 | .publish/ 6 | -------------------------------------------------------------------------------- /photowall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/README.md -------------------------------------------------------------------------------- /photowall/app/elements/elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/app/elements/elements.html -------------------------------------------------------------------------------- /photowall/app/elements/flickr-gallery/flickr-gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/app/elements/flickr-gallery/flickr-gallery.html -------------------------------------------------------------------------------- /photowall/app/elements/presentation-api/presentation-api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/app/elements/presentation-api/presentation-api.html -------------------------------------------------------------------------------- /photowall/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/app/favicon.ico -------------------------------------------------------------------------------- /photowall/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/app/index.html -------------------------------------------------------------------------------- /photowall/app/receiver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/app/receiver.html -------------------------------------------------------------------------------- /photowall/app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/app/scripts/app.js -------------------------------------------------------------------------------- /photowall/app/scripts/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/app/scripts/constants.js -------------------------------------------------------------------------------- /photowall/app/scripts/presentation_polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/app/scripts/presentation_polyfill.js -------------------------------------------------------------------------------- /photowall/app/scripts/receiver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/app/scripts/receiver.js -------------------------------------------------------------------------------- /photowall/app/styles/app-theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/app/styles/app-theme.html -------------------------------------------------------------------------------- /photowall/app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/app/styles/main.css -------------------------------------------------------------------------------- /photowall/app/styles/receiver.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/app/styles/receiver.css -------------------------------------------------------------------------------- /photowall/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/bower.json -------------------------------------------------------------------------------- /photowall/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/gulpfile.js -------------------------------------------------------------------------------- /photowall/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/presentation-api-samples/HEAD/photowall/package.json --------------------------------------------------------------------------------