├── .gitignore ├── .travis.yml ├── README.md ├── bower.json ├── dist ├── lightrouter.js └── lightrouter.min.js ├── gulpfile.js ├── karma.conf.js ├── package.json ├── src └── lightrouter.js └── tests ├── browser ├── chai.js ├── index.htm ├── mocha.css └── mocha.js └── main.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garygreen/lightrouter/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garygreen/lightrouter/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garygreen/lightrouter/HEAD/bower.json -------------------------------------------------------------------------------- /dist/lightrouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garygreen/lightrouter/HEAD/dist/lightrouter.js -------------------------------------------------------------------------------- /dist/lightrouter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garygreen/lightrouter/HEAD/dist/lightrouter.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garygreen/lightrouter/HEAD/gulpfile.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garygreen/lightrouter/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garygreen/lightrouter/HEAD/package.json -------------------------------------------------------------------------------- /src/lightrouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garygreen/lightrouter/HEAD/src/lightrouter.js -------------------------------------------------------------------------------- /tests/browser/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garygreen/lightrouter/HEAD/tests/browser/chai.js -------------------------------------------------------------------------------- /tests/browser/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garygreen/lightrouter/HEAD/tests/browser/index.htm -------------------------------------------------------------------------------- /tests/browser/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garygreen/lightrouter/HEAD/tests/browser/mocha.css -------------------------------------------------------------------------------- /tests/browser/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garygreen/lightrouter/HEAD/tests/browser/mocha.js -------------------------------------------------------------------------------- /tests/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garygreen/lightrouter/HEAD/tests/main.js --------------------------------------------------------------------------------