├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── component.json ├── css ├── .DS_Store ├── animations.less ├── base.less ├── responsive.less ├── styles.css └── themes │ └── default.less ├── demo.html ├── gulpfile.js ├── js ├── comment.js ├── helpers │ └── mobile-check.js ├── main.js ├── section.js └── vendor │ └── lodash-custom.js ├── package.json ├── release ├── side-comments.css ├── side-comments.js ├── side-comments.min.css ├── side-comments.min.js └── themes │ ├── default-theme.css │ └── default-theme.min.css ├── support ├── css │ └── basics.css ├── images │ ├── cattelyn_stark.png │ ├── clay_davis.png │ ├── donald_draper.png │ ├── jon_snow.png │ └── user.png ├── js │ └── jquery.js └── test_data.js ├── templates ├── comment.html ├── form.html └── section.html ├── test ├── index.html ├── test_main.js └── vendor │ ├── chai.js │ ├── lodash.js │ ├── mocha.css │ └── mocha.js └── themes └── default.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/bower.json -------------------------------------------------------------------------------- /component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/component.json -------------------------------------------------------------------------------- /css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/css/.DS_Store -------------------------------------------------------------------------------- /css/animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/css/animations.less -------------------------------------------------------------------------------- /css/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/css/base.less -------------------------------------------------------------------------------- /css/responsive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/css/responsive.less -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/css/styles.css -------------------------------------------------------------------------------- /css/themes/default.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/css/themes/default.less -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/demo.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/gulpfile.js -------------------------------------------------------------------------------- /js/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/js/comment.js -------------------------------------------------------------------------------- /js/helpers/mobile-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/js/helpers/mobile-check.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/js/main.js -------------------------------------------------------------------------------- /js/section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/js/section.js -------------------------------------------------------------------------------- /js/vendor/lodash-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/js/vendor/lodash-custom.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/package.json -------------------------------------------------------------------------------- /release/side-comments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/release/side-comments.css -------------------------------------------------------------------------------- /release/side-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/release/side-comments.js -------------------------------------------------------------------------------- /release/side-comments.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/release/side-comments.min.css -------------------------------------------------------------------------------- /release/side-comments.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/release/side-comments.min.js -------------------------------------------------------------------------------- /release/themes/default-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/release/themes/default-theme.css -------------------------------------------------------------------------------- /release/themes/default-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/release/themes/default-theme.min.css -------------------------------------------------------------------------------- /support/css/basics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/support/css/basics.css -------------------------------------------------------------------------------- /support/images/cattelyn_stark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/support/images/cattelyn_stark.png -------------------------------------------------------------------------------- /support/images/clay_davis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/support/images/clay_davis.png -------------------------------------------------------------------------------- /support/images/donald_draper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/support/images/donald_draper.png -------------------------------------------------------------------------------- /support/images/jon_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/support/images/jon_snow.png -------------------------------------------------------------------------------- /support/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/support/images/user.png -------------------------------------------------------------------------------- /support/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/support/js/jquery.js -------------------------------------------------------------------------------- /support/test_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/support/test_data.js -------------------------------------------------------------------------------- /templates/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/templates/comment.html -------------------------------------------------------------------------------- /templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/templates/form.html -------------------------------------------------------------------------------- /templates/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/templates/section.html -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/test/index.html -------------------------------------------------------------------------------- /test/test_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/test/test_main.js -------------------------------------------------------------------------------- /test/vendor/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/test/vendor/chai.js -------------------------------------------------------------------------------- /test/vendor/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/test/vendor/lodash.js -------------------------------------------------------------------------------- /test/vendor/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/test/vendor/mocha.css -------------------------------------------------------------------------------- /test/vendor/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/test/vendor/mocha.js -------------------------------------------------------------------------------- /themes/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroc/side-comments/HEAD/themes/default.css --------------------------------------------------------------------------------