Add selectors for spoilers elements

pull/81/head
MillenniumEarl 2021-03-11 22:13:56 +01:00
parent 75267aa1a3
commit 0b6880d5de
1 changed files with 10 additions and 1 deletions

View File

@ -154,7 +154,16 @@ export const POST = {
* *
* For use within a `THREAD.POSTS_IN_PAGE` selector. * For use within a `THREAD.POSTS_IN_PAGE` selector.
*/ */
BOOKMARKED: '* ul.message-attribution-opposite >li > a[title="Bookmark"].is-bookmarked' BOOKMARKED: '* ul.message-attribution-opposite >li > a[title="Bookmark"].is-bookmarked',
/**
* Button used to hide/show a spoiler element of a post.
*/
SPOILER_BUTTON: "button.bbCodeSpoiler-button",
/**
* Contents of a spoiler element in a post.
*/
SPOILER_CONTENT:
"div.bbCodeSpoiler-content > div.bbCodeBlock--spoiler > div.bbCodeBlock-content"
}; };
export const MEMBER = { export const MEMBER = {