├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── dist └── angular-youtube-embed.min.js ├── gulpfile.js ├── index.js ├── package.json ├── src ├── angular-youtube-embed.js ├── demo │ ├── advanced.html │ ├── the.html │ └── the.js └── index.html └── test ├── config └── karma.conf.coffee └── unit └── get-id-from-url.coffee /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/bower.json -------------------------------------------------------------------------------- /dist/angular-youtube-embed.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/dist/angular-youtube-embed.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/package.json -------------------------------------------------------------------------------- /src/angular-youtube-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/src/angular-youtube-embed.js -------------------------------------------------------------------------------- /src/demo/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/src/demo/advanced.html -------------------------------------------------------------------------------- /src/demo/the.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/src/demo/the.html -------------------------------------------------------------------------------- /src/demo/the.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/src/demo/the.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/src/index.html -------------------------------------------------------------------------------- /test/config/karma.conf.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/test/config/karma.conf.coffee -------------------------------------------------------------------------------- /test/unit/get-id-from-url.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-youtube-embed/HEAD/test/unit/get-id-from-url.coffee --------------------------------------------------------------------------------