├── .bowerrc ├── .gitignore ├── .jsbeautifyrc ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── example ├── app.js ├── example-controller.js ├── example.html ├── index.html └── user │ ├── accounts.html │ └── settings │ ├── settings-controller.js │ └── settings.html ├── karma.conf.js ├── package.json └── src ├── ui-router-tabs.js └── ui-router-tabs.spec.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "bower_components" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | bower_components 3 | node_modules 4 | .idea 5 | -------------------------------------------------------------------------------- /.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/.jsbeautifyrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/bower.json -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/example/app.js -------------------------------------------------------------------------------- /example/example-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/example/example-controller.js -------------------------------------------------------------------------------- /example/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/example/example.html -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/example/index.html -------------------------------------------------------------------------------- /example/user/accounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/example/user/accounts.html -------------------------------------------------------------------------------- /example/user/settings/settings-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/example/user/settings/settings-controller.js -------------------------------------------------------------------------------- /example/user/settings/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/example/user/settings/settings.html -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/package.json -------------------------------------------------------------------------------- /src/ui-router-tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/src/ui-router-tabs.js -------------------------------------------------------------------------------- /src/ui-router-tabs.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/ui-router-tabs/HEAD/src/ui-router-tabs.spec.js --------------------------------------------------------------------------------