├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── CNAME ├── README.md ├── favicon.ico ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff ├── img ├── generate-icons.sh ├── icon-120x120.png ├── icon-128x128.png ├── icon-152x152.png ├── icon-180x180.png ├── icon-512x512.png ├── icon-57x57.png ├── icon-76x76.png ├── icon.png └── icon.xcf ├── index.html ├── manifest.appcache ├── manifest.webapp ├── package.json ├── scripts ├── angular-cookies.js ├── angular-resource.js ├── angular-route.js ├── angular-sanitize.js ├── angular.js ├── app.js ├── bootstrap.js ├── controllers │ ├── detail.js │ └── main.js ├── deps │ ├── markdown.min.js │ ├── md5.min.js │ ├── moment.min.js │ ├── pouchdb.js │ ├── pouchdb.load.js │ ├── pouchdb.transform-pouch.js │ └── pouchdb.upsert.js ├── factories │ └── utils.js ├── jquery.js └── services │ ├── page-service.js │ └── pouch-service.js ├── styles ├── app.css ├── bootstrap.css └── main.css └── views ├── detail.html └── main.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/.jshintrc -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | www.npm-browser.com 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/README.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/favicon.ico -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /img/generate-icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/img/generate-icons.sh -------------------------------------------------------------------------------- /img/icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/img/icon-120x120.png -------------------------------------------------------------------------------- /img/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/img/icon-128x128.png -------------------------------------------------------------------------------- /img/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/img/icon-152x152.png -------------------------------------------------------------------------------- /img/icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/img/icon-180x180.png -------------------------------------------------------------------------------- /img/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/img/icon-512x512.png -------------------------------------------------------------------------------- /img/icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/img/icon-57x57.png -------------------------------------------------------------------------------- /img/icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/img/icon-76x76.png -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/img/icon.png -------------------------------------------------------------------------------- /img/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/img/icon.xcf -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/index.html -------------------------------------------------------------------------------- /manifest.appcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/manifest.appcache -------------------------------------------------------------------------------- /manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/manifest.webapp -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/package.json -------------------------------------------------------------------------------- /scripts/angular-cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/angular-cookies.js -------------------------------------------------------------------------------- /scripts/angular-resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/angular-resource.js -------------------------------------------------------------------------------- /scripts/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/angular-route.js -------------------------------------------------------------------------------- /scripts/angular-sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/angular-sanitize.js -------------------------------------------------------------------------------- /scripts/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/angular.js -------------------------------------------------------------------------------- /scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/app.js -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /scripts/controllers/detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/controllers/detail.js -------------------------------------------------------------------------------- /scripts/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/controllers/main.js -------------------------------------------------------------------------------- /scripts/deps/markdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/deps/markdown.min.js -------------------------------------------------------------------------------- /scripts/deps/md5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/deps/md5.min.js -------------------------------------------------------------------------------- /scripts/deps/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/deps/moment.min.js -------------------------------------------------------------------------------- /scripts/deps/pouchdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/deps/pouchdb.js -------------------------------------------------------------------------------- /scripts/deps/pouchdb.load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/deps/pouchdb.load.js -------------------------------------------------------------------------------- /scripts/deps/pouchdb.transform-pouch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/deps/pouchdb.transform-pouch.js -------------------------------------------------------------------------------- /scripts/deps/pouchdb.upsert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/deps/pouchdb.upsert.js -------------------------------------------------------------------------------- /scripts/factories/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/factories/utils.js -------------------------------------------------------------------------------- /scripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/jquery.js -------------------------------------------------------------------------------- /scripts/services/page-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/services/page-service.js -------------------------------------------------------------------------------- /scripts/services/pouch-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/scripts/services/pouch-service.js -------------------------------------------------------------------------------- /styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/styles/app.css -------------------------------------------------------------------------------- /styles/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/styles/bootstrap.css -------------------------------------------------------------------------------- /styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/styles/main.css -------------------------------------------------------------------------------- /views/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/views/detail.html -------------------------------------------------------------------------------- /views/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/npm-browser/HEAD/views/main.html --------------------------------------------------------------------------------