├── .bowerrc ├── .gitignore ├── Gruntfile.js ├── README.md ├── app ├── index.html ├── js │ ├── app.js │ ├── routing.js │ └── routing.spec.js └── views │ ├── 404.html │ └── home.html ├── bower.json └── package.json /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bower_components/ -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikaspran/example-ui-router-testing/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikaspran/example-ui-router-testing/HEAD/README.md -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikaspran/example-ui-router-testing/HEAD/app/index.html -------------------------------------------------------------------------------- /app/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikaspran/example-ui-router-testing/HEAD/app/js/app.js -------------------------------------------------------------------------------- /app/js/routing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikaspran/example-ui-router-testing/HEAD/app/js/routing.js -------------------------------------------------------------------------------- /app/js/routing.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikaspran/example-ui-router-testing/HEAD/app/js/routing.spec.js -------------------------------------------------------------------------------- /app/views/404.html: -------------------------------------------------------------------------------- 1 | 404 State -------------------------------------------------------------------------------- /app/views/home.html: -------------------------------------------------------------------------------- 1 | Home State -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikaspran/example-ui-router-testing/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikaspran/example-ui-router-testing/HEAD/package.json --------------------------------------------------------------------------------