11 lines
478 B
JavaScript
11 lines
478 B
JavaScript
|
|
export default {
|
||
|
|
switchToCommentModeBtn: ".t--switch-comment-mode-on",
|
||
|
|
mentionsInput: "[data-testid='mentions-input']",
|
||
|
|
postButtonAddComment: "[data-cy='add-comment-submit']",
|
||
|
|
cancelCommentButton: "[data-cy='add-comment-cancel']",
|
||
|
|
inlineCommentThreadPin: ".t--inline-comment-pin-trigger-",
|
||
|
|
toggleCommentModeOnUnread: ".t--toggle-comment-mode-on--unread",
|
||
|
|
toggleCommentModeOn: ".t--toggle-comment-mode-on",
|
||
|
|
toggleCommentModeOff: ".t--switch-comment-mode-off",
|
||
|
|
};
|