├── .gitignore ├── .github └── ISSUE_TEMPLATE.md ├── index.html ├── demo ├── data-loading-demo.html ├── youtube-demo │ ├── route-info.html │ ├── search-results.html │ ├── youtube-search.html │ ├── video-viewer.html │ ├── youtube-toolbar.html │ └── youtube-lite.html ├── data-loading-demo │ ├── flickr-search-demo.html │ ├── flickr-image-page.html │ └── flickr-search-page.html ├── simple-demo.html └── index.html ├── test ├── index.html ├── redirection.html ├── observer-tester.html ├── app-example-1.html ├── app-route-converter.html ├── test-observer-app.html ├── test-app-example-1.html ├── app-location.html └── app-route.html ├── .travis.yml ├── bower.json ├── app-route-converter.html ├── CONTRIBUTING.md ├── app-route-converter-behavior.html ├── app-location.html ├── README.md └── app-route.html /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components* 2 | bower-*.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 |
13 | 14 |{{error.response}}
51 |
52 |
53 |
111 |