blob: 6c2382e85f7a2dab15a99ccf9ddb2fe8874c67f6 [file] [log] [blame]
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +02001
2export const SLIDES_SELECTOR = '.slides section';
3export const HORIZONTAL_SLIDES_SELECTOR = '.slides>section';
4export const VERTICAL_SLIDES_SELECTOR = '.slides>section.present>section';
5
6// Methods that may not be invoked via the postMessage API
7export const POST_MESSAGE_METHOD_BLACKLIST = /registerPlugin|registerKeyboardShortcut|addKeyBinding|addEventListener/;
8
9// Regex for retrieving the fragment style from a class attribute
10export const FRAGMENT_STYLE_REGEX = /fade-(down|up|right|left|out|in-then-out|in-then-semi-out)|semi-fade-out|current-visible|shrink|grow/;