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
|
@@ -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;
|