├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── .umd ├── README.md ├── app ├── angular-bootstrap-tour.js ├── tour_config_provider.js ├── tour_controller.js ├── tour_directive.js ├── tour_helpers.js └── tour_step_directive.js ├── bower.json ├── demo ├── angular-bootstrap-tour.js ├── app.js ├── bootstrap-cerulean.css ├── bootswatch.css ├── bootswatch.js ├── index.html └── views │ ├── docs.html │ └── other.html ├── dist ├── angular-bootstrap-tour.js └── angular-bootstrap-tour.min.js ├── gruntfile.js ├── karma.conf.js ├── package.json └── test └── spec └── angular-bootstrap-tour.spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/.travis.yml -------------------------------------------------------------------------------- /.umd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/.umd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/README.md -------------------------------------------------------------------------------- /app/angular-bootstrap-tour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/app/angular-bootstrap-tour.js -------------------------------------------------------------------------------- /app/tour_config_provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/app/tour_config_provider.js -------------------------------------------------------------------------------- /app/tour_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/app/tour_controller.js -------------------------------------------------------------------------------- /app/tour_directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/app/tour_directive.js -------------------------------------------------------------------------------- /app/tour_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/app/tour_helpers.js -------------------------------------------------------------------------------- /app/tour_step_directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/app/tour_step_directive.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/bower.json -------------------------------------------------------------------------------- /demo/angular-bootstrap-tour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/demo/angular-bootstrap-tour.js -------------------------------------------------------------------------------- /demo/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/demo/app.js -------------------------------------------------------------------------------- /demo/bootstrap-cerulean.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/demo/bootstrap-cerulean.css -------------------------------------------------------------------------------- /demo/bootswatch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/demo/bootswatch.css -------------------------------------------------------------------------------- /demo/bootswatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/demo/bootswatch.js -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/views/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/demo/views/docs.html -------------------------------------------------------------------------------- /demo/views/other.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/demo/views/other.html -------------------------------------------------------------------------------- /dist/angular-bootstrap-tour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/dist/angular-bootstrap-tour.js -------------------------------------------------------------------------------- /dist/angular-bootstrap-tour.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/dist/angular-bootstrap-tour.min.js -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/gruntfile.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/package.json -------------------------------------------------------------------------------- /test/spec/angular-bootstrap-tour.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmarch/angular-bootstrap-tour/HEAD/test/spec/angular-bootstrap-tour.spec.js --------------------------------------------------------------------------------