├── .editorconfig ├── .gitignore ├── .jshintrc ├── README.md ├── angular-localStorage-todos ├── .bowerrc ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── app │ ├── .buildignore │ ├── .htaccess │ ├── 404.html │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ └── yeoman.png │ ├── index.html │ ├── robots.txt │ ├── scripts │ │ ├── app.js │ │ └── controllers │ │ │ └── main.js │ ├── styles │ │ └── main.css │ └── views │ │ └── main.html ├── bower.json ├── heroku │ ├── Procfile │ ├── distpackage.json │ └── server.js ├── karma-e2e.conf.js ├── karma.conf.js ├── package.json └── test │ ├── .jshintrc │ ├── runner.html │ └── spec │ └── controllers │ └── main.js ├── angular-localStorage-urlShortener ├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── app │ ├── .buildignore │ ├── .htaccess │ ├── 404.html │ ├── favicon.ico │ ├── images │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ ├── index.html │ ├── robots.txt │ ├── scripts │ │ ├── app.js │ │ ├── controllers │ │ │ └── main.js │ │ └── services │ │ │ └── UrlResource.js │ ├── styles │ │ └── main.scss │ └── views │ │ └── main.html ├── bower.json ├── karma-e2e.conf.js ├── karma.conf.js ├── package.json └── test │ ├── .jshintrc │ ├── runner.html │ └── spec │ ├── controllers │ └── main.js │ └── services │ └── UrlResource.js ├── backbone-localStorage-todos ├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── app │ ├── .htaccess │ ├── 404.html │ ├── favicon.ico │ ├── index.html │ ├── robots.txt │ ├── scripts │ │ ├── collections │ │ │ └── todos-collection.js │ │ ├── main.js │ │ ├── models │ │ │ └── todo-model.js │ │ ├── templates │ │ │ ├── todo.ejs │ │ │ └── todos.ejs │ │ └── views │ │ │ ├── todo-view.js │ │ │ └── todos-view.js │ └── styles │ │ └── main.scss ├── bower.json ├── package.json ├── readme.md └── test │ ├── .bowerrc │ ├── bower.json │ ├── index.html │ └── spec │ └── test.js └── backbone-localStorage-urlShortener ├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── app ├── .htaccess ├── 404.html ├── favicon.ico ├── index.html ├── robots.txt ├── scripts │ ├── collections │ │ └── url-collection.js │ ├── main.js │ ├── models │ │ └── url-model.js │ ├── templates │ │ └── url.ejs │ └── views │ │ └── url-view.js └── styles │ └── main.css ├── bower.json ├── package.json └── test ├── index.html ├── lib ├── chai.js ├── expect.js └── mocha │ ├── mocha.css │ └── mocha.js └── spec └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/.jshintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/README.md -------------------------------------------------------------------------------- /angular-localStorage-todos/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /angular-localStorage-todos/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /angular-localStorage-todos/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .tmp 4 | .sass-cache 5 | app/components 6 | -------------------------------------------------------------------------------- /angular-localStorage-todos/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/.jshintrc -------------------------------------------------------------------------------- /angular-localStorage-todos/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/.travis.yml -------------------------------------------------------------------------------- /angular-localStorage-todos/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/Gruntfile.js -------------------------------------------------------------------------------- /angular-localStorage-todos/app/.buildignore: -------------------------------------------------------------------------------- 1 | *.coffee -------------------------------------------------------------------------------- /angular-localStorage-todos/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/app/.htaccess -------------------------------------------------------------------------------- /angular-localStorage-todos/app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/app/404.html -------------------------------------------------------------------------------- /angular-localStorage-todos/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/app/favicon.ico -------------------------------------------------------------------------------- /angular-localStorage-todos/app/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/app/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /angular-localStorage-todos/app/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/app/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /angular-localStorage-todos/app/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/app/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /angular-localStorage-todos/app/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/app/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /angular-localStorage-todos/app/images/yeoman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/app/images/yeoman.png -------------------------------------------------------------------------------- /angular-localStorage-todos/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/app/index.html -------------------------------------------------------------------------------- /angular-localStorage-todos/app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /angular-localStorage-todos/app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/app/scripts/app.js -------------------------------------------------------------------------------- /angular-localStorage-todos/app/scripts/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/app/scripts/controllers/main.js -------------------------------------------------------------------------------- /angular-localStorage-todos/app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/app/styles/main.css -------------------------------------------------------------------------------- /angular-localStorage-todos/app/views/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/app/views/main.html -------------------------------------------------------------------------------- /angular-localStorage-todos/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/bower.json -------------------------------------------------------------------------------- /angular-localStorage-todos/heroku/Procfile: -------------------------------------------------------------------------------- 1 | web: node server.js 2 | -------------------------------------------------------------------------------- /angular-localStorage-todos/heroku/distpackage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/heroku/distpackage.json -------------------------------------------------------------------------------- /angular-localStorage-todos/heroku/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/heroku/server.js -------------------------------------------------------------------------------- /angular-localStorage-todos/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/karma-e2e.conf.js -------------------------------------------------------------------------------- /angular-localStorage-todos/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/karma.conf.js -------------------------------------------------------------------------------- /angular-localStorage-todos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/package.json -------------------------------------------------------------------------------- /angular-localStorage-todos/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/test/.jshintrc -------------------------------------------------------------------------------- /angular-localStorage-todos/test/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/test/runner.html -------------------------------------------------------------------------------- /angular-localStorage-todos/test/spec/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-todos/test/spec/controllers/main.js -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/.editorconfig -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/.gitignore -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/.jshintrc -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/.travis.yml -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/Gruntfile.js -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/app/.buildignore: -------------------------------------------------------------------------------- 1 | *.coffee -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/app/.htaccess -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/app/404.html -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/app/favicon.ico -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/app/images/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/app/images/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/app/images/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/app/images/glyphicons-halflings.png -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/app/index.html -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/app/scripts/app.js -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/app/scripts/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/app/scripts/controllers/main.js -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/app/scripts/services/UrlResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/app/scripts/services/UrlResource.js -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/app/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/app/styles/main.scss -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/app/views/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/app/views/main.html -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/bower.json -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/karma-e2e.conf.js -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/karma.conf.js -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/package.json -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/test/.jshintrc -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/test/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/test/runner.html -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/test/spec/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/test/spec/controllers/main.js -------------------------------------------------------------------------------- /angular-localStorage-urlShortener/test/spec/services/UrlResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/angular-localStorage-urlShortener/test/spec/services/UrlResource.js -------------------------------------------------------------------------------- /backbone-localStorage-todos/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /backbone-localStorage-todos/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/.editorconfig -------------------------------------------------------------------------------- /backbone-localStorage-todos/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /backbone-localStorage-todos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/.gitignore -------------------------------------------------------------------------------- /backbone-localStorage-todos/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/.jshintrc -------------------------------------------------------------------------------- /backbone-localStorage-todos/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/Gruntfile.js -------------------------------------------------------------------------------- /backbone-localStorage-todos/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/app/.htaccess -------------------------------------------------------------------------------- /backbone-localStorage-todos/app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/app/404.html -------------------------------------------------------------------------------- /backbone-localStorage-todos/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/app/favicon.ico -------------------------------------------------------------------------------- /backbone-localStorage-todos/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/app/index.html -------------------------------------------------------------------------------- /backbone-localStorage-todos/app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /backbone-localStorage-todos/app/scripts/collections/todos-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/app/scripts/collections/todos-collection.js -------------------------------------------------------------------------------- /backbone-localStorage-todos/app/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/app/scripts/main.js -------------------------------------------------------------------------------- /backbone-localStorage-todos/app/scripts/models/todo-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/app/scripts/models/todo-model.js -------------------------------------------------------------------------------- /backbone-localStorage-todos/app/scripts/templates/todo.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/app/scripts/templates/todo.ejs -------------------------------------------------------------------------------- /backbone-localStorage-todos/app/scripts/templates/todos.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/app/scripts/templates/todos.ejs -------------------------------------------------------------------------------- /backbone-localStorage-todos/app/scripts/views/todo-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/app/scripts/views/todo-view.js -------------------------------------------------------------------------------- /backbone-localStorage-todos/app/scripts/views/todos-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/app/scripts/views/todos-view.js -------------------------------------------------------------------------------- /backbone-localStorage-todos/app/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/app/styles/main.scss -------------------------------------------------------------------------------- /backbone-localStorage-todos/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/bower.json -------------------------------------------------------------------------------- /backbone-localStorage-todos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/package.json -------------------------------------------------------------------------------- /backbone-localStorage-todos/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/readme.md -------------------------------------------------------------------------------- /backbone-localStorage-todos/test/.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/test/.bowerrc -------------------------------------------------------------------------------- /backbone-localStorage-todos/test/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/test/bower.json -------------------------------------------------------------------------------- /backbone-localStorage-todos/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/test/index.html -------------------------------------------------------------------------------- /backbone-localStorage-todos/test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-todos/test/spec/test.js -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/.editorconfig -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/.gitignore -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/.jshintrc -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/Gruntfile.js -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/app/.htaccess -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/app/404.html -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/app/favicon.ico -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/app/index.html -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/app/scripts/collections/url-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/app/scripts/collections/url-collection.js -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/app/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/app/scripts/main.js -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/app/scripts/models/url-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/app/scripts/models/url-model.js -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/app/scripts/templates/url.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/app/scripts/templates/url.ejs -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/app/scripts/views/url-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/app/scripts/views/url-view.js -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/app/styles/main.css -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/bower.json -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/package.json -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/test/index.html -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/test/lib/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/test/lib/chai.js -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/test/lib/expect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/test/lib/expect.js -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/test/lib/mocha/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/test/lib/mocha/mocha.css -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/test/lib/mocha/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/test/lib/mocha/mocha.js -------------------------------------------------------------------------------- /backbone-localStorage-urlShortener/test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/yeoman-examples/HEAD/backbone-localStorage-urlShortener/test/spec/test.js --------------------------------------------------------------------------------