├── .gitignore ├── .npm └── package │ ├── .gitignore │ ├── README │ └── npm-shrinkwrap.json ├── .travis.yml ├── .versions ├── GUIDE.md ├── LICENSE ├── README.md ├── lib ├── api.js ├── collections │ ├── CommentCollectionMethods.js │ ├── ReplyCollectionMethods.js │ ├── anonymous-user.js │ ├── comments.js │ └── methods │ │ ├── anonymous-user.js │ │ └── comments.js ├── comment-status-api.js ├── components │ ├── commentsBox │ │ ├── commentsBox.html │ │ ├── commentsBox.js │ │ └── commentsBox.less │ ├── commentsList │ │ ├── commentsList.html │ │ └── commentsList.js │ ├── commentsSingleComment │ │ ├── commentsSingleComment.html │ │ └── commentsSingleComment.js │ ├── commentsSubheader │ │ ├── commentsSubheader.html │ │ └── commentsSubheader.js │ ├── commentsTextarea │ │ ├── commentsTextarea.html │ │ └── commentsTextarea.js │ └── helpers.js ├── lib │ ├── noOptOptions.js │ ├── promisifyCall.js │ ├── ratingScore.js │ ├── triggerEvent.js │ └── verifyData.js ├── server │ ├── api.js │ └── publish.js └── services │ ├── comment-status.js │ ├── comment.js │ ├── hashing.js │ ├── media-analyzers │ ├── image.js │ └── youtube.js │ ├── media.js │ ├── reply.js │ ├── time-tick.js │ └── user.js ├── package.js ├── screenshot.png ├── tests ├── api-tests.js ├── reply-service-tests.js └── ui-tests.js └── versions.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea* 2 | .build* 3 | -------------------------------------------------------------------------------- /.npm/package/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npm/package/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/.npm/package/README -------------------------------------------------------------------------------- /.npm/package/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/.npm/package/npm-shrinkwrap.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/.travis.yml -------------------------------------------------------------------------------- /.versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/.versions -------------------------------------------------------------------------------- /GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/GUIDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/README.md -------------------------------------------------------------------------------- /lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/api.js -------------------------------------------------------------------------------- /lib/collections/CommentCollectionMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/collections/CommentCollectionMethods.js -------------------------------------------------------------------------------- /lib/collections/ReplyCollectionMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/collections/ReplyCollectionMethods.js -------------------------------------------------------------------------------- /lib/collections/anonymous-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/collections/anonymous-user.js -------------------------------------------------------------------------------- /lib/collections/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/collections/comments.js -------------------------------------------------------------------------------- /lib/collections/methods/anonymous-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/collections/methods/anonymous-user.js -------------------------------------------------------------------------------- /lib/collections/methods/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/collections/methods/comments.js -------------------------------------------------------------------------------- /lib/comment-status-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/comment-status-api.js -------------------------------------------------------------------------------- /lib/components/commentsBox/commentsBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/components/commentsBox/commentsBox.html -------------------------------------------------------------------------------- /lib/components/commentsBox/commentsBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/components/commentsBox/commentsBox.js -------------------------------------------------------------------------------- /lib/components/commentsBox/commentsBox.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/components/commentsBox/commentsBox.less -------------------------------------------------------------------------------- /lib/components/commentsList/commentsList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/components/commentsList/commentsList.html -------------------------------------------------------------------------------- /lib/components/commentsList/commentsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/components/commentsList/commentsList.js -------------------------------------------------------------------------------- /lib/components/commentsSingleComment/commentsSingleComment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/components/commentsSingleComment/commentsSingleComment.html -------------------------------------------------------------------------------- /lib/components/commentsSingleComment/commentsSingleComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/components/commentsSingleComment/commentsSingleComment.js -------------------------------------------------------------------------------- /lib/components/commentsSubheader/commentsSubheader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/components/commentsSubheader/commentsSubheader.html -------------------------------------------------------------------------------- /lib/components/commentsSubheader/commentsSubheader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/components/commentsSubheader/commentsSubheader.js -------------------------------------------------------------------------------- /lib/components/commentsTextarea/commentsTextarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/components/commentsTextarea/commentsTextarea.html -------------------------------------------------------------------------------- /lib/components/commentsTextarea/commentsTextarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/components/commentsTextarea/commentsTextarea.js -------------------------------------------------------------------------------- /lib/components/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/components/helpers.js -------------------------------------------------------------------------------- /lib/lib/noOptOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/lib/noOptOptions.js -------------------------------------------------------------------------------- /lib/lib/promisifyCall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/lib/promisifyCall.js -------------------------------------------------------------------------------- /lib/lib/ratingScore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/lib/ratingScore.js -------------------------------------------------------------------------------- /lib/lib/triggerEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/lib/triggerEvent.js -------------------------------------------------------------------------------- /lib/lib/verifyData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/lib/verifyData.js -------------------------------------------------------------------------------- /lib/server/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/server/api.js -------------------------------------------------------------------------------- /lib/server/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/server/publish.js -------------------------------------------------------------------------------- /lib/services/comment-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/services/comment-status.js -------------------------------------------------------------------------------- /lib/services/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/services/comment.js -------------------------------------------------------------------------------- /lib/services/hashing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/services/hashing.js -------------------------------------------------------------------------------- /lib/services/media-analyzers/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/services/media-analyzers/image.js -------------------------------------------------------------------------------- /lib/services/media-analyzers/youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/services/media-analyzers/youtube.js -------------------------------------------------------------------------------- /lib/services/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/services/media.js -------------------------------------------------------------------------------- /lib/services/reply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/services/reply.js -------------------------------------------------------------------------------- /lib/services/time-tick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/services/time-tick.js -------------------------------------------------------------------------------- /lib/services/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/lib/services/user.js -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/package.js -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/screenshot.png -------------------------------------------------------------------------------- /tests/api-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/tests/api-tests.js -------------------------------------------------------------------------------- /tests/reply-service-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/tests/reply-service-tests.js -------------------------------------------------------------------------------- /tests/ui-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/tests/ui-tests.js -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komentify/meteor-comments-ui/HEAD/versions.json --------------------------------------------------------------------------------