├── .bowerrc ├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── bower.json ├── dist ├── update-meta.js └── update-meta.min.js ├── examples ├── all.html ├── gcd.html ├── router.html └── ui-router.html ├── gulpfile.js ├── karma-dist-concatenated.conf.js ├── karma-dist-minified.conf.js ├── package.json ├── src └── updateMeta │ ├── directives │ ├── update-link.directive.js │ ├── update-meta.directive.js │ ├── update-script.directive.js │ └── update-title.directive.js │ ├── services │ ├── update-attribute.service.js │ └── update-script-content.service.js │ └── updateMeta.js └── test └── unit └── updateMeta ├── directives └── update-meta.directive.spec.js └── updateMetaSpec.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower" 3 | } -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/bower.json -------------------------------------------------------------------------------- /dist/update-meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/dist/update-meta.js -------------------------------------------------------------------------------- /dist/update-meta.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/dist/update-meta.min.js -------------------------------------------------------------------------------- /examples/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/examples/all.html -------------------------------------------------------------------------------- /examples/gcd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/examples/gcd.html -------------------------------------------------------------------------------- /examples/router.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/examples/router.html -------------------------------------------------------------------------------- /examples/ui-router.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/examples/ui-router.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/gulpfile.js -------------------------------------------------------------------------------- /karma-dist-concatenated.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/karma-dist-concatenated.conf.js -------------------------------------------------------------------------------- /karma-dist-minified.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/karma-dist-minified.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/package.json -------------------------------------------------------------------------------- /src/updateMeta/directives/update-link.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/src/updateMeta/directives/update-link.directive.js -------------------------------------------------------------------------------- /src/updateMeta/directives/update-meta.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/src/updateMeta/directives/update-meta.directive.js -------------------------------------------------------------------------------- /src/updateMeta/directives/update-script.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/src/updateMeta/directives/update-script.directive.js -------------------------------------------------------------------------------- /src/updateMeta/directives/update-title.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/src/updateMeta/directives/update-title.directive.js -------------------------------------------------------------------------------- /src/updateMeta/services/update-attribute.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/src/updateMeta/services/update-attribute.service.js -------------------------------------------------------------------------------- /src/updateMeta/services/update-script-content.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/src/updateMeta/services/update-script-content.service.js -------------------------------------------------------------------------------- /src/updateMeta/updateMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/src/updateMeta/updateMeta.js -------------------------------------------------------------------------------- /test/unit/updateMeta/directives/update-meta.directive.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/test/unit/updateMeta/directives/update-meta.directive.spec.js -------------------------------------------------------------------------------- /test/unit/updateMeta/updateMetaSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/angular-update-meta/HEAD/test/unit/updateMeta/updateMetaSpec.js --------------------------------------------------------------------------------