ep_comments_page 0.1.83 → 0.1.84

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "description": "Adds comments on sidebar and link it to the text. For no-skin use ep_page_view.",
3
3
  "name": "ep_comments_page",
4
- "version": "0.1.83",
4
+ "version": "0.1.84",
5
5
  "author": {
6
6
  "name": "Nicolas Lescop",
7
7
  "email": "limplementeur@gmail.com"
@@ -11,13 +11,6 @@ const getCommentsContainer = () => getPadOuter().find('#comments');
11
11
 
12
12
  /* ***** Public methods: ***** */
13
13
 
14
- const showComment = (commentId, e) => {
15
- const commentElm = getCommentsContainer().find(`#${commentId}`);
16
- commentElm.show();
17
-
18
- highlightComment(commentId, e);
19
- };
20
-
21
14
  const hideComment = (commentId, hideCommentTitle) => {
22
15
  const commentElm = getCommentsContainer().find(`#${commentId}`);
23
16
  commentElm.removeClass('full-display');
@@ -122,7 +115,6 @@ const shouldNotCloseComment = (e) => {
122
115
  return false;
123
116
  };
124
117
 
125
- exports.showComment = showComment;
126
118
  exports.hideComment = hideComment;
127
119
  exports.hideAllComments = hideAllComments;
128
120
  exports.highlightComment = highlightComment;