├── .gitignore ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bower.json ├── dist ├── backbone.base-router.js ├── backbone.base-router.min.js └── backbone.base-router.min.js.map ├── examples ├── fetch-router │ ├── README.md │ ├── index.html │ └── script.js └── old-router │ ├── README.md │ ├── index.html │ └── script.js ├── gruntfile.js ├── package.json ├── src ├── backbone.base-router.js └── wrapper.js └── test ├── .jshintrc ├── setup ├── helpers.js └── node.js ├── spec-runner.html └── unit └── base-router.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/bower.json -------------------------------------------------------------------------------- /dist/backbone.base-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/dist/backbone.base-router.js -------------------------------------------------------------------------------- /dist/backbone.base-router.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/dist/backbone.base-router.min.js -------------------------------------------------------------------------------- /dist/backbone.base-router.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/dist/backbone.base-router.min.js.map -------------------------------------------------------------------------------- /examples/fetch-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/examples/fetch-router/README.md -------------------------------------------------------------------------------- /examples/fetch-router/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/examples/fetch-router/index.html -------------------------------------------------------------------------------- /examples/fetch-router/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/examples/fetch-router/script.js -------------------------------------------------------------------------------- /examples/old-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/examples/old-router/README.md -------------------------------------------------------------------------------- /examples/old-router/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/examples/old-router/index.html -------------------------------------------------------------------------------- /examples/old-router/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/examples/old-router/script.js -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/gruntfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/package.json -------------------------------------------------------------------------------- /src/backbone.base-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/src/backbone.base-router.js -------------------------------------------------------------------------------- /src/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/src/wrapper.js -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/test/.jshintrc -------------------------------------------------------------------------------- /test/setup/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/test/setup/helpers.js -------------------------------------------------------------------------------- /test/setup/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/test/setup/node.js -------------------------------------------------------------------------------- /test/spec-runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/test/spec-runner.html -------------------------------------------------------------------------------- /test/unit/base-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesplease/backbone.base-router/HEAD/test/unit/base-router.js --------------------------------------------------------------------------------