├── .gitignore ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── dist ├── jquery-tourbus.css ├── jquery-tourbus.js ├── jquery-tourbus.map ├── jquery-tourbus.min.css └── jquery-tourbus.min.js ├── package.json ├── site ├── demo.css ├── demo.js ├── deps │ ├── imagesloaded.pkgd.min.js │ ├── jquery.min.js │ └── jquery.scrollTo.min.js ├── highlight.js ├── index.html ├── jquery-tourbus.css ├── jquery-tourbus.js ├── jquery-tourbus.map ├── pranksters.jpg └── skeleton.css ├── src ├── jquery-tourbus.coffee ├── jquery-tourbus.less └── modules │ ├── bus.coffee │ ├── leg.coffee │ └── utils.coffee └── test ├── runner ├── assert.js ├── basic.html ├── chai.js ├── mocha.css └── mocha.js └── src ├── build.coffee ├── callbacks.coffee ├── core.coffee ├── destroy.coffee └── expose.coffee /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/bower.json -------------------------------------------------------------------------------- /dist/jquery-tourbus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/dist/jquery-tourbus.css -------------------------------------------------------------------------------- /dist/jquery-tourbus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/dist/jquery-tourbus.js -------------------------------------------------------------------------------- /dist/jquery-tourbus.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/dist/jquery-tourbus.map -------------------------------------------------------------------------------- /dist/jquery-tourbus.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/dist/jquery-tourbus.min.css -------------------------------------------------------------------------------- /dist/jquery-tourbus.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/dist/jquery-tourbus.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/package.json -------------------------------------------------------------------------------- /site/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/site/demo.css -------------------------------------------------------------------------------- /site/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/site/demo.js -------------------------------------------------------------------------------- /site/deps/imagesloaded.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/site/deps/imagesloaded.pkgd.min.js -------------------------------------------------------------------------------- /site/deps/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/site/deps/jquery.min.js -------------------------------------------------------------------------------- /site/deps/jquery.scrollTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/site/deps/jquery.scrollTo.min.js -------------------------------------------------------------------------------- /site/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/site/highlight.js -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/site/index.html -------------------------------------------------------------------------------- /site/jquery-tourbus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/site/jquery-tourbus.css -------------------------------------------------------------------------------- /site/jquery-tourbus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/site/jquery-tourbus.js -------------------------------------------------------------------------------- /site/jquery-tourbus.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/site/jquery-tourbus.map -------------------------------------------------------------------------------- /site/pranksters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/site/pranksters.jpg -------------------------------------------------------------------------------- /site/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/site/skeleton.css -------------------------------------------------------------------------------- /src/jquery-tourbus.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/src/jquery-tourbus.coffee -------------------------------------------------------------------------------- /src/jquery-tourbus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/src/jquery-tourbus.less -------------------------------------------------------------------------------- /src/modules/bus.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/src/modules/bus.coffee -------------------------------------------------------------------------------- /src/modules/leg.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/src/modules/leg.coffee -------------------------------------------------------------------------------- /src/modules/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/src/modules/utils.coffee -------------------------------------------------------------------------------- /test/runner/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/test/runner/assert.js -------------------------------------------------------------------------------- /test/runner/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/test/runner/basic.html -------------------------------------------------------------------------------- /test/runner/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/test/runner/chai.js -------------------------------------------------------------------------------- /test/runner/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/test/runner/mocha.css -------------------------------------------------------------------------------- /test/runner/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/test/runner/mocha.js -------------------------------------------------------------------------------- /test/src/build.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/test/src/build.coffee -------------------------------------------------------------------------------- /test/src/callbacks.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/test/src/callbacks.coffee -------------------------------------------------------------------------------- /test/src/core.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/test/src/core.coffee -------------------------------------------------------------------------------- /test/src/destroy.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/test/src/destroy.coffee -------------------------------------------------------------------------------- /test/src/expose.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfunduk/jquery-tourbus/HEAD/test/src/expose.coffee --------------------------------------------------------------------------------