├── .gitignore ├── LICENSE ├── README.md ├── annotate.js ├── index.html ├── screenshots ├── index-desktop.png ├── index-mobile.png ├── latecomers-desktop.png ├── latecomers-mobile.png ├── small-example-thread.png └── small-example.png └── styles.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molly/annotate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molly/annotate/HEAD/README.md -------------------------------------------------------------------------------- /annotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molly/annotate/HEAD/annotate.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molly/annotate/HEAD/index.html -------------------------------------------------------------------------------- /screenshots/index-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molly/annotate/HEAD/screenshots/index-desktop.png -------------------------------------------------------------------------------- /screenshots/index-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molly/annotate/HEAD/screenshots/index-mobile.png -------------------------------------------------------------------------------- /screenshots/latecomers-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molly/annotate/HEAD/screenshots/latecomers-desktop.png -------------------------------------------------------------------------------- /screenshots/latecomers-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molly/annotate/HEAD/screenshots/latecomers-mobile.png -------------------------------------------------------------------------------- /screenshots/small-example-thread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molly/annotate/HEAD/screenshots/small-example-thread.png -------------------------------------------------------------------------------- /screenshots/small-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molly/annotate/HEAD/screenshots/small-example.png -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molly/annotate/HEAD/styles.css --------------------------------------------------------------------------------