├── .editorconfig ├── .gitignore ├── .travis.yml ├── CNAME ├── LICENSE ├── README.md ├── _config.yml ├── bower.json ├── coffeelint.json ├── composer.json ├── gulpfile.js ├── karma.conf.js ├── package.js ├── package.json ├── smart.json ├── src ├── coffee │ ├── bootstrap-tour.coffee │ ├── bootstrap-tour.docs.coffee │ └── bootstrap-tour.spec.coffee ├── docs │ ├── CNAME │ ├── _includes │ │ ├── footer.html │ │ ├── header.html │ │ └── nav.html │ ├── _layouts │ │ └── default.html │ ├── api.html │ ├── assets │ │ ├── css │ │ │ ├── bootstrap-tour.css │ │ │ └── bootstrap-tour.docs.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── favicon.png │ │ │ └── masthead-pattern.png │ │ ├── js │ │ │ └── bootstrap-tour.js │ │ └── vendor │ │ │ └── pygments-manni.css │ └── index.html └── scss │ ├── bootstrap-tour-standalone.scss │ └── bootstrap-tour.scss ├── test └── bootstrap-tour.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/.travis.yml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | bootstraptour.com 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/_config.yml -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/bower.json -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/coffeelint.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/composer.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/gulpfile.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/package.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/package.json -------------------------------------------------------------------------------- /smart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/smart.json -------------------------------------------------------------------------------- /src/coffee/bootstrap-tour.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/coffee/bootstrap-tour.coffee -------------------------------------------------------------------------------- /src/coffee/bootstrap-tour.docs.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/coffee/bootstrap-tour.docs.coffee -------------------------------------------------------------------------------- /src/coffee/bootstrap-tour.spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/coffee/bootstrap-tour.spec.coffee -------------------------------------------------------------------------------- /src/docs/CNAME: -------------------------------------------------------------------------------- 1 | bootstraptour.com 2 | -------------------------------------------------------------------------------- /src/docs/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/_includes/footer.html -------------------------------------------------------------------------------- /src/docs/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/_includes/header.html -------------------------------------------------------------------------------- /src/docs/_includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/_includes/nav.html -------------------------------------------------------------------------------- /src/docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/_layouts/default.html -------------------------------------------------------------------------------- /src/docs/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/api.html -------------------------------------------------------------------------------- /src/docs/assets/css/bootstrap-tour.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/assets/css/bootstrap-tour.css -------------------------------------------------------------------------------- /src/docs/assets/css/bootstrap-tour.docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/assets/css/bootstrap-tour.docs.css -------------------------------------------------------------------------------- /src/docs/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/docs/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/docs/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/docs/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/docs/assets/img/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/assets/img/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /src/docs/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/assets/img/favicon.png -------------------------------------------------------------------------------- /src/docs/assets/img/masthead-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/assets/img/masthead-pattern.png -------------------------------------------------------------------------------- /src/docs/assets/js/bootstrap-tour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/assets/js/bootstrap-tour.js -------------------------------------------------------------------------------- /src/docs/assets/vendor/pygments-manni.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/assets/vendor/pygments-manni.css -------------------------------------------------------------------------------- /src/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/docs/index.html -------------------------------------------------------------------------------- /src/scss/bootstrap-tour-standalone.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/scss/bootstrap-tour-standalone.scss -------------------------------------------------------------------------------- /src/scss/bootstrap-tour.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/src/scss/bootstrap-tour.scss -------------------------------------------------------------------------------- /test/bootstrap-tour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/test/bootstrap-tour.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorich87/bootstrap-tour/HEAD/yarn.lock --------------------------------------------------------------------------------