├── .gitignore ├── .travis.yml ├── README.md ├── docs ├── README.md ├── animation-buffer.md ├── bootstrapping-data.md ├── delegate-views.md ├── docpress.json ├── document-ready-abuse.md ├── event-handlers-outside-views.md ├── file-naming.md ├── inline-templates.md ├── jst-templates.md ├── mixins.md ├── namespace-convention.md ├── naming-convention.md ├── other-links.md ├── partials.md ├── requirejs-and-amd.md ├── subviews.md └── things-outside-views.md └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | node_modules 3 | _docpress 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/animation-buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/animation-buffer.md -------------------------------------------------------------------------------- /docs/bootstrapping-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/bootstrapping-data.md -------------------------------------------------------------------------------- /docs/delegate-views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/delegate-views.md -------------------------------------------------------------------------------- /docs/docpress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/docpress.json -------------------------------------------------------------------------------- /docs/document-ready-abuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/document-ready-abuse.md -------------------------------------------------------------------------------- /docs/event-handlers-outside-views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/event-handlers-outside-views.md -------------------------------------------------------------------------------- /docs/file-naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/file-naming.md -------------------------------------------------------------------------------- /docs/inline-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/inline-templates.md -------------------------------------------------------------------------------- /docs/jst-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/jst-templates.md -------------------------------------------------------------------------------- /docs/mixins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/mixins.md -------------------------------------------------------------------------------- /docs/namespace-convention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/namespace-convention.md -------------------------------------------------------------------------------- /docs/naming-convention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/naming-convention.md -------------------------------------------------------------------------------- /docs/other-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/other-links.md -------------------------------------------------------------------------------- /docs/partials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/partials.md -------------------------------------------------------------------------------- /docs/requirejs-and-amd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/requirejs-and-amd.md -------------------------------------------------------------------------------- /docs/subviews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/subviews.md -------------------------------------------------------------------------------- /docs/things-outside-views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/docs/things-outside-views.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/backbone-patterns/HEAD/package.json --------------------------------------------------------------------------------