mirror of
https://github.com/hakimel/reveal.js.git
synced 2025-01-17 21:39:25 +01:00
1 line
410 KiB
Plaintext
1 line
410 KiB
Plaintext
{"version":3,"file":"reveal.js","sources":["../js/utils/util.js","../js/utils/device.js","../node_modules/fitty/dist/fitty.module.js","../js/controllers/slidecontent.js","../js/controllers/slidenumber.js","../js/controllers/jumptoslide.js","../js/utils/color.js","../js/controllers/backgrounds.js","../js/utils/constants.js","../js/controllers/autoanimate.js","../js/controllers/scrollview.js","../js/controllers/printview.js","../js/controllers/fragments.js","../js/controllers/overview.js","../js/controllers/keyboard.js","../js/controllers/location.js","../js/controllers/controls.js","../js/controllers/progress.js","../js/controllers/pointer.js","../js/utils/loader.js","../js/controllers/plugins.js","../js/controllers/touch.js","../js/controllers/focus.js","../js/controllers/notes.js","../js/components/playback.js","../js/config.js","../js/reveal.js","../js/index.js"],"sourcesContent":["/**\n * Extend object a with the properties of object b.\n * If there's a conflict, object b takes precedence.\n *\n * @param {object} a\n * @param {object} b\n */\nexport const extend = ( a, b ) => {\n\n\tfor( let i in b ) {\n\t\ta[ i ] = b[ i ];\n\t}\n\n\treturn a;\n\n}\n\n/**\n * querySelectorAll but returns an Array.\n */\nexport const queryAll = ( el, selector ) => {\n\n\treturn Array.from( el.querySelectorAll( selector ) );\n\n}\n\n/**\n * classList.toggle() with cross browser support\n */\nexport const toggleClass = ( el, className, value ) => {\n\tif( value ) {\n\t\tel.classList.add( className );\n\t}\n\telse {\n\t\tel.classList.remove( className );\n\t}\n}\n\n/**\n * Utility for deserializing a value.\n *\n * @param {*} value\n * @return {*}\n */\nexport const deserialize = ( value ) => {\n\n\tif( typeof value === 'string' ) {\n\t\tif( value === 'null' ) return null;\n\t\telse if( value === 'true' ) return true;\n\t\telse if( value === 'false' ) return false;\n\t\telse if( value.match( /^-?[\\d\\.]+$/ ) ) return parseFloat( value );\n\t}\n\n\treturn value;\n\n}\n\n/**\n * Measures the distance in pixels between point a\n * and point b.\n *\n * @param {object} a point with x/y properties\n * @param {object} b point with x/y properties\n *\n * @return {number}\n */\nexport const distanceBetween = ( a, b ) => {\n\n\tlet dx = a.x - b.x,\n\t\tdy = a.y - b.y;\n\n\treturn Math.sqrt( dx*dx + dy*dy );\n\n}\n\n/**\n * Applies a CSS transform to the target element.\n *\n * @param {HTMLElement} element\n * @param {string} transform\n */\nexport const transformElement = ( element, transform ) => {\n\n\telement.style.transform = transform;\n\n}\n\n/**\n * Element.matches with IE support.\n *\n * @param {HTMLElement} target The element to match\n * @param {String} selector The CSS selector to match\n * the element against\n *\n * @return {Boolean}\n */\nexport const matches = ( target, selector ) => {\n\n\tlet matchesMethod = target.matches || target.matchesSelector || target.msMatchesSelector;\n\n\treturn !!( matchesMethod && matchesMethod.call( target, selector ) );\n\n}\n\n/**\n * Find the closest parent that matches the given\n * selector.\n *\n * @param {HTMLElement} target The child element\n * @param {String} selector The CSS selector to match\n * the parents against\n *\n * @return {HTMLElement} The matched parent or null\n * if no matching parent was found\n */\nexport const closest = ( target, selector ) => {\n\n\t// Native Element.closest\n\tif( typeof target.closest === 'function' ) {\n\t\treturn target.closest( selector );\n\t}\n\n\t// Polyfill\n\twhile( target ) {\n\t\tif( matches( target, selector ) ) {\n\t\t\treturn target;\n\t\t}\n\n\t\t// Keep searching\n\t\ttarget = target.parentNode;\n\t}\n\n\treturn null;\n\n}\n\n/**\n * Handling the fullscreen functionality via the fullscreen API\n *\n * @see http://fullscreen.spec.whatwg.org/\n * @see https://developer.mozilla.org/en-US/docs/DOM/Using_fullscreen_mode\n */\nexport const enterFullscreen = element => {\n\n\telement = element || document.documentElement;\n\n\t// Check which implementation is available\n\tlet requestMethod = element.requestFullscreen ||\n\t\t\t\t\t\telement.webkitRequestFullscreen ||\n\t\t\t\t\t\telement.webkitRequestFullScreen ||\n\t\t\t\t\t\telement.mozRequestFullScreen ||\n\t\t\t\t\t\telement.msRequestFullscreen;\n\n\tif( requestMethod ) {\n\t\trequestMethod.apply( element );\n\t}\n\n}\n\n/**\n * Creates an HTML element and returns a reference to it.\n * If the element already exists the existing instance will\n * be returned.\n *\n * @param {HTMLElement} container\n * @param {string} tagname\n * @param {string} classname\n * @param {string} innerHTML\n *\n * @return {HTMLElement}\n */\nexport const createSingletonNode = ( container, tagname, classname, innerHTML='' ) => {\n\n\t// Find all nodes matching the description\n\tlet nodes = container.querySelectorAll( '.' + classname );\n\n\t// Check all matches to find one which is a direct child of\n\t// the specified container\n\tfor( let i = 0; i < nodes.length; i++ ) {\n\t\tlet testNode = nodes[i];\n\t\tif( testNode.parentNode === container ) {\n\t\t\treturn testNode;\n\t\t}\n\t}\n\n\t// If no node was found, create it now\n\tlet node = document.createElement( tagname );\n\tnode.className = classname;\n\tnode.innerHTML = innerHTML;\n\tcontainer.appendChild( node );\n\n\treturn node;\n\n}\n\n/**\n * Injects the given CSS styles into the DOM.\n *\n * @param {string} value\n */\nexport const createStyleSheet = ( value ) => {\n\n\tlet tag = document.createElement( 'style' );\n\ttag.type = 'text/css';\n\n\tif( value && value.length > 0 ) {\n\t\tif( tag.styleSheet ) {\n\t\t\ttag.styleSheet.cssText = value;\n\t\t}\n\t\telse {\n\t\t\ttag.appendChild( document.createTextNode( value ) );\n\t\t}\n\t}\n\n\tdocument.head.appendChild( tag );\n\n\treturn tag;\n\n}\n\n/**\n * Returns a key:value hash of all query params.\n */\nexport const getQueryHash = () => {\n\n\tlet query = {};\n\n\tlocation.search.replace( /[A-Z0-9]+?=([\\w\\.%-]*)/gi, a => {\n\t\tquery[ a.split( '=' ).shift() ] = a.split( '=' ).pop();\n\t} );\n\n\t// Basic deserialization\n\tfor( let i in query ) {\n\t\tlet value = query[ i ];\n\n\t\tquery[ i ] = deserialize( unescape( value ) );\n\t}\n\n\t// Do not accept new dependencies via query config to avoid\n\t// the potential of malicious script injection\n\tif( typeof query['dependencies'] !== 'undefined' ) delete query['dependencies'];\n\n\treturn query;\n\n}\n\n/**\n * Returns the remaining height within the parent of the\n * target element.\n *\n * remaining height = [ configured parent height ] - [ current parent height ]\n *\n * @param {HTMLElement} element\n * @param {number} [height]\n */\nexport const getRemainingHeight = ( element, height = 0 ) => {\n\n\tif( element ) {\n\t\tlet newHeight, oldHeight = element.style.height;\n\n\t\t// Change the .stretch element height to 0 in order find the height of all\n\t\t// the other elements\n\t\telement.style.height = '0px';\n\n\t\t// In Overview mode, the parent (.slide) height is set of 700px.\n\t\t// Restore it temporarily to its natural height.\n\t\telement.parentNode.style.height = 'auto';\n\n\t\tnewHeight = height - element.parentNode.offsetHeight;\n\n\t\t// Restore the old height, just in case\n\t\telement.style.height = oldHeight + 'px';\n\n\t\t// Clear the parent (.slide) height. .removeProperty works in IE9+\n\t\telement.parentNode.style.removeProperty('height');\n\n\t\treturn newHeight;\n\t}\n\n\treturn height;\n\n}\n\nconst fileExtensionToMimeMap = {\n\t'mp4': 'video/mp4',\n\t'm4a': 'video/mp4',\n\t'ogv': 'video/ogg',\n\t'mpeg': 'video/mpeg',\n\t'webm': 'video/webm'\n}\n\n/**\n * Guess the MIME type for common file formats.\n */\nexport const getMimeTypeFromFile = ( filename='' ) => {\n\treturn fileExtensionToMimeMap[filename.split('.').pop()]\n}\n\n/**\n * Encodes a string for RFC3986-compliant URL format.\n * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI#encoding_for_rfc3986\n *\n * @param {string} url\n */\nexport const encodeRFC3986URI = ( url='' ) => {\n\treturn encodeURI(url)\n\t .replace(/%5B/g, \"[\")\n\t .replace(/%5D/g, \"]\")\n\t .replace(\n\t\t/[!'()*]/g,\n\t\t(c) => `%${c.charCodeAt(0).toString(16).toUpperCase()}`\n\t );\n}","const UA = navigator.userAgent;\n\nexport const isMobile = /(iphone|ipod|ipad|android)/gi.test( UA ) ||\n\t\t\t\t\t\t( navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1 ); // iPadOS\n\nexport const isChrome = /chrome/i.test( UA ) && !/edge/i.test( UA );\n\nexport const isAndroid = /android/gi.test( UA );","/*\n * fitty v2.3.3 - Snugly resizes text to fit its parent container\n * Copyright (c) 2020 Rik Schennink <rik@pqina.nl> (https://pqina.nl/)\n */\n'use strict';\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n\nvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\nexports.default = function (w) {\n\n // no window, early exit\n if (!w) return;\n\n // node list to array helper method\n var toArray = function toArray(nl) {\n return [].slice.call(nl);\n };\n\n // states\n var DrawState = {\n IDLE: 0,\n DIRTY_CONTENT: 1,\n DIRTY_LAYOUT: 2,\n DIRTY: 3\n };\n\n // all active fitty elements\n var fitties = [];\n\n // group all redraw calls till next frame, we cancel each frame request when a new one comes in. If no support for request animation frame, this is an empty function and supports for fitty stops.\n var redrawFrame = null;\n var requestRedraw = 'requestAnimationFrame' in w ? function () {\n w.cancelAnimationFrame(redrawFrame);\n redrawFrame = w.requestAnimationFrame(function () {\n return redraw(fitties.filter(function (f) {\n return f.dirty && f.active;\n }));\n });\n } : function () {};\n\n // sets all fitties to dirty so they are redrawn on the next redraw loop, then calls redraw\n var redrawAll = function redrawAll(type) {\n return function () {\n fitties.forEach(function (f) {\n return f.dirty = type;\n });\n requestRedraw();\n };\n };\n\n // redraws fitties so they nicely fit their parent container\n var redraw = function redraw(fitties) {\n\n // getting info from the DOM at this point should not trigger a reflow, let's gather as much intel as possible before triggering a reflow\n\n // check if styles of all fitties have been computed\n fitties.filter(function (f) {\n return !f.styleComputed;\n }).forEach(function (f) {\n f.styleComputed = computeStyle(f);\n });\n\n // restyle elements that require pre-styling, this triggers a reflow, please try to prevent by adding CSS rules (see docs)\n fitties.filter(shouldPreStyle).forEach(applyStyle);\n\n // we now determine which fitties should be redrawn\n var fittiesToRedraw = fitties.filter(shouldRedraw);\n\n // we calculate final styles for these fitties\n fittiesToRedraw.forEach(calculateStyles);\n\n // now we apply the calculated styles from our previous loop\n fittiesToRedraw.forEach(function (f) {\n applyStyle(f);\n markAsClean(f);\n });\n\n // now we dispatch events for all restyled fitties\n fittiesToRedraw.forEach(dispatchFitEvent);\n };\n\n var markAsClean = function markAsClean(f) {\n return f.dirty = DrawState.IDLE;\n };\n\n var calculateStyles = function calculateStyles(f) {\n\n // get available width from parent node\n f.availableWidth = f.element.parentNode.clientWidth;\n\n // the space our target element uses\n f.currentWidth = f.element.scrollWidth;\n\n // remember current font size\n f.previousFontSize = f.currentFontSize;\n\n // let's calculate the new font size\n f.currentFontSize = Math.min(Math.max(f.minSize, f.availableWidth / f.currentWidth * f.previousFontSize), f.maxSize);\n\n // if allows wrapping, only wrap when at minimum font size (otherwise would break container)\n f.whiteSpace = f.multiLine && f.currentFontSize === f.minSize ? 'normal' : 'nowrap';\n };\n\n // should always redraw if is not dirty layout, if is dirty layout, only redraw if size has changed\n var shouldRedraw = function shouldRedraw(f) {\n return f.dirty !== DrawState.DIRTY_LAYOUT || f.dirty === DrawState.DIRTY_LAYOUT && f.element.parentNode.clientWidth !== f.availableWidth;\n };\n\n // every fitty element is tested for invalid styles\n var computeStyle = function computeStyle(f) {\n\n // get style properties\n var style = w.getComputedStyle(f.element, null);\n\n // get current font size in pixels (if we already calculated it, use the calculated version)\n f.currentFontSize = parseFloat(style.getPropertyValue('font-size'));\n\n // get display type and wrap mode\n f.display = style.getPropertyValue('display');\n f.whiteSpace = style.getPropertyValue('white-space');\n };\n\n // determines if this fitty requires initial styling, can be prevented by applying correct styles through CSS\n var shouldPreStyle = function shouldPreStyle(f) {\n\n var preStyle = false;\n\n // if we already tested for prestyling we don't have to do it again\n if (f.preStyleTestCompleted) return false;\n\n // should have an inline style, if not, apply\n if (!/inline-/.test(f.display)) {\n preStyle = true;\n f.display = 'inline-block';\n }\n\n // to correctly calculate dimensions the element should have whiteSpace set to nowrap\n if (f.whiteSpace !== 'nowrap') {\n preStyle = true;\n f.whiteSpace = 'nowrap';\n }\n\n // we don't have to do this twice\n f.preStyleTestCompleted = true;\n\n return preStyle;\n };\n\n // apply styles to single fitty\n var applyStyle = function applyStyle(f) {\n f.element.style.whiteSpace = f.whiteSpace;\n f.element.style.display = f.display;\n f.element.style.fontSize = f.currentFontSize + 'px';\n };\n\n // dispatch a fit event on a fitty\n var dispatchFitEvent = function dispatchFitEvent(f) {\n f.element.dispatchEvent(new CustomEvent('fit', {\n detail: {\n oldValue: f.previousFontSize,\n newValue: f.currentFontSize,\n scaleFactor: f.currentFontSize / f.previousFontSize\n }\n }));\n };\n\n // fit method, marks the fitty as dirty and requests a redraw (this will also redraw any other fitty marked as dirty)\n var fit = function fit(f, type) {\n return function () {\n f.dirty = type;\n if (!f.active) return;\n requestRedraw();\n };\n };\n\n var init = function init(f) {\n\n // save some of the original CSS properties before we change them\n f.originalStyle = {\n whiteSpace: f.element.style.whiteSpace,\n display: f.element.style.display,\n fontSize: f.element.style.fontSize\n };\n\n // should we observe DOM mutations\n observeMutations(f);\n\n // this is a new fitty so we need to validate if it's styles are in order\n f.newbie = true;\n\n // because it's a new fitty it should also be dirty, we want it to redraw on the first loop\n f.dirty = true;\n\n // we want to be able to update this fitty\n fitties.push(f);\n };\n\n var destroy = function destroy(f) {\n return function () {\n\n // remove from fitties array\n fitties = fitties.filter(function (_) {\n return _.element !== f.element;\n });\n\n // stop observing DOM\n if (f.observeMutations) f.observer.disconnect();\n\n // reset the CSS properties we changes\n f.element.style.whiteSpace = f.originalStyle.whiteSpace;\n f.element.style.display = f.originalStyle.display;\n f.element.style.fontSize = f.originalStyle.fontSize;\n };\n };\n\n // add a new fitty, does not redraw said fitty\n var subscribe = function subscribe(f) {\n return function () {\n if (f.active) return;\n f.active = true;\n requestRedraw();\n };\n };\n\n // remove an existing fitty\n var unsubscribe = function unsubscribe(f) {\n return function () {\n return f.active = false;\n };\n };\n\n var observeMutations = function observeMutations(f) {\n\n // no observing?\n if (!f.observeMutations) return;\n\n // start observing mutations\n f.observer = new MutationObserver(fit(f, DrawState.DIRTY_CONTENT));\n\n // start observing\n f.observer.observe(f.element, f.observeMutations);\n };\n\n // default mutation observer settings\n var mutationObserverDefaultSetting = {\n subtree: true,\n childList: true,\n characterData: true\n };\n\n // default fitty options\n var defaultOptions = {\n minSize: 16,\n maxSize: 512,\n multiLine: true,\n observeMutations: 'MutationObserver' in w ? mutationObserverDefaultSetting : false\n };\n\n // array of elements in, fitty instances out\n function fittyCreate(elements, options) {\n\n // set options object\n var fittyOptions = _extends({}, defaultOptions, options);\n\n // create fitties\n var publicFitties = elements.map(function (element) {\n\n // create fitty instance\n var f = _extends({}, fittyOptions, {\n\n // internal options for this fitty\n element: element,\n active: true\n });\n\n // initialise this fitty\n init(f);\n\n // expose API\n return {\n element: element,\n fit: fit(f, DrawState.DIRTY),\n unfreeze: subscribe(f),\n freeze: unsubscribe(f),\n unsubscribe: destroy(f)\n };\n });\n\n // call redraw on newly initiated fitties\n requestRedraw();\n\n // expose fitties\n return publicFitties;\n }\n\n // fitty creation function\n function fitty(target) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\n // if target is a string\n return typeof target === 'string' ?\n\n // treat it as a querySelector\n fittyCreate(toArray(document.querySelectorAll(target)), options) :\n\n // create single fitty\n fittyCreate([target], options)[0];\n }\n\n // handles viewport changes, redraws all fitties, but only does so after a timeout\n var resizeDebounce = null;\n var onWindowResized = function onWindowResized() {\n w.clearTimeout(resizeDebounce);\n resizeDebounce = w.setTimeout(redrawAll(DrawState.DIRTY_LAYOUT), fitty.observeWindowDelay);\n };\n\n // define observe window property, so when we set it to true or false events are automatically added and removed\n var events = ['resize', 'orientationchange'];\n Object.defineProperty(fitty, 'observeWindow', {\n set: function set(enabled) {\n var method = (enabled ? 'add' : 'remove') + 'EventListener';\n events.forEach(function (e) {\n w[method](e, onWindowResized);\n });\n }\n });\n\n // fitty global properties (by setting observeWindow to true the events above get added)\n fitty.observeWindow = true;\n fitty.observeWindowDelay = 100;\n\n // public fit all method, will force redraw no matter what\n fitty.fitAll = redrawAll(DrawState.DIRTY);\n\n // export our fitty function, we don't want to keep it to our selves\n return fitty;\n}(typeof window === 'undefined' ? null : window);","import { extend, queryAll, closest, getMimeTypeFromFile, encodeRFC3986URI } from '../utils/util.js'\nimport { isMobile } from '../utils/device.js'\n\nimport fitty from 'fitty';\n\n/**\n * Handles loading, unloading and playback of slide\n * content such as images, videos and iframes.\n */\nexport default class SlideContent {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t\tthis.startEmbeddedIframe = this.startEmbeddedIframe.bind( this );\n\n\t}\n\n\t/**\n\t * Should the given element be preloaded?\n\t * Decides based on local element attributes and global config.\n\t *\n\t * @param {HTMLElement} element\n\t */\n\tshouldPreload( element ) {\n\n\t\tif( this.Reveal.isScrollView() ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Prefer an explicit global preload setting\n\t\tlet preload = this.Reveal.getConfig().preloadIframes;\n\n\t\t// If no global setting is available, fall back on the element's\n\t\t// own preload setting\n\t\tif( typeof preload !== 'boolean' ) {\n\t\t\tpreload = element.hasAttribute( 'data-preload' );\n\t\t}\n\n\t\treturn preload;\n\t}\n\n\t/**\n\t * Called when the given slide is within the configured view\n\t * distance. Shows the slide element and loads any content\n\t * that is set to load lazily (data-src).\n\t *\n\t * @param {HTMLElement} slide Slide to show\n\t */\n\tload( slide, options = {} ) {\n\n\t\t// Show the slide element\n\t\tslide.style.display = this.Reveal.getConfig().display;\n\n\t\t// Media elements with data-src attributes\n\t\tqueryAll( slide, 'img[data-src], video[data-src], audio[data-src], iframe[data-src]' ).forEach( element => {\n\t\t\tif( element.tagName !== 'IFRAME' || this.shouldPreload( element ) ) {\n\t\t\t\telement.setAttribute( 'src', element.getAttribute( 'data-src' ) );\n\t\t\t\telement.setAttribute( 'data-lazy-loaded', '' );\n\t\t\t\telement.removeAttribute( 'data-src' );\n\t\t\t}\n\t\t} );\n\n\t\t// Media elements with <source> children\n\t\tqueryAll( slide, 'video, audio' ).forEach( media => {\n\t\t\tlet sources = 0;\n\n\t\t\tqueryAll( media, 'source[data-src]' ).forEach( source => {\n\t\t\t\tsource.setAttribute( 'src', source.getAttribute( 'data-src' ) );\n\t\t\t\tsource.removeAttribute( 'data-src' );\n\t\t\t\tsource.setAttribute( 'data-lazy-loaded', '' );\n\t\t\t\tsources += 1;\n\t\t\t} );\n\n\t\t\t// Enable inline video playback in mobile Safari\n\t\t\tif( isMobile && media.tagName === 'VIDEO' ) {\n\t\t\t\tmedia.setAttribute( 'playsinline', '' );\n\t\t\t}\n\n\t\t\t// If we rewrote sources for this video/audio element, we need\n\t\t\t// to manually tell it to load from its new origin\n\t\t\tif( sources > 0 ) {\n\t\t\t\tmedia.load();\n\t\t\t}\n\t\t} );\n\n\n\t\t// Show the corresponding background element\n\t\tlet background = slide.slideBackgroundElement;\n\t\tif( background ) {\n\t\t\tbackground.style.display = 'block';\n\n\t\t\tlet backgroundContent = slide.slideBackgroundContentElement;\n\t\t\tlet backgroundIframe = slide.getAttribute( 'data-background-iframe' );\n\n\t\t\t// If the background contains media, load it\n\t\t\tif( background.hasAttribute( 'data-loaded' ) === false ) {\n\t\t\t\tbackground.setAttribute( 'data-loaded', 'true' );\n\n\t\t\t\tlet backgroundImage = slide.getAttribute( 'data-background-image' ),\n\t\t\t\t\tbackgroundVideo = slide.getAttribute( 'data-background-video' ),\n\t\t\t\t\tbackgroundVideoLoop = slide.hasAttribute( 'data-background-video-loop' ),\n\t\t\t\t\tbackgroundVideoMuted = slide.hasAttribute( 'data-background-video-muted' );\n\n\t\t\t\t// Images\n\t\t\t\tif( backgroundImage ) {\n\t\t\t\t\t// base64\n\t\t\t\t\tif( /^data:/.test( backgroundImage.trim() ) ) {\n\t\t\t\t\t\tbackgroundContent.style.backgroundImage = `url(${backgroundImage.trim()})`;\n\t\t\t\t\t}\n\t\t\t\t\t// URL(s)\n\t\t\t\t\telse {\n\t\t\t\t\t\tbackgroundContent.style.backgroundImage = backgroundImage.split( ',' ).map( background => {\n\t\t\t\t\t\t\t// Decode URL(s) that are already encoded first\n\t\t\t\t\t\t\tlet decoded = decodeURI(background.trim());\n\t\t\t\t\t\t\treturn `url(${encodeRFC3986URI(decoded)})`;\n\t\t\t\t\t\t}).join( ',' );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Videos\n\t\t\t\telse if ( backgroundVideo && !this.Reveal.isSpeakerNotes() ) {\n\t\t\t\t\tlet video = document.createElement( 'video' );\n\n\t\t\t\t\tif( backgroundVideoLoop ) {\n\t\t\t\t\t\tvideo.setAttribute( 'loop', '' );\n\t\t\t\t\t}\n\n\t\t\t\t\tif( backgroundVideoMuted ) {\n\t\t\t\t\t\tvideo.muted = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Enable inline playback in mobile Safari\n\t\t\t\t\t//\n\t\t\t\t\t// Mute is required for video to play when using\n\t\t\t\t\t// swipe gestures to navigate since they don't\n\t\t\t\t\t// count as direct user actions :'(\n\t\t\t\t\tif( isMobile ) {\n\t\t\t\t\t\tvideo.muted = true;\n\t\t\t\t\t\tvideo.setAttribute( 'playsinline', '' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support comma separated lists of video sources\n\t\t\t\t\tbackgroundVideo.split( ',' ).forEach( source => {\n\t\t\t\t\t\tlet type = getMimeTypeFromFile( source );\n\t\t\t\t\t\tif( type ) {\n\t\t\t\t\t\t\tvideo.innerHTML += `<source src=\"${source}\" type=\"${type}\">`;\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tvideo.innerHTML += `<source src=\"${source}\">`;\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t\tbackgroundContent.appendChild( video );\n\t\t\t\t}\n\t\t\t\t// Iframes\n\t\t\t\telse if( backgroundIframe && options.excludeIframes !== true ) {\n\t\t\t\t\tlet iframe = document.createElement( 'iframe' );\n\t\t\t\t\tiframe.setAttribute( 'allowfullscreen', '' );\n\t\t\t\t\tiframe.setAttribute( 'mozallowfullscreen', '' );\n\t\t\t\t\tiframe.setAttribute( 'webkitallowfullscreen', '' );\n\t\t\t\t\tiframe.setAttribute( 'allow', 'autoplay' );\n\n\t\t\t\t\tiframe.setAttribute( 'data-src', backgroundIframe );\n\n\t\t\t\t\tiframe.style.width = '100%';\n\t\t\t\t\tiframe.style.height = '100%';\n\t\t\t\t\tiframe.style.maxHeight = '100%';\n\t\t\t\t\tiframe.style.maxWidth = '100%';\n\n\t\t\t\t\tbackgroundContent.appendChild( iframe );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start loading preloadable iframes\n\t\t\tlet backgroundIframeElement = backgroundContent.querySelector( 'iframe[data-src]' );\n\t\t\tif( backgroundIframeElement ) {\n\n\t\t\t\t// Check if this iframe is eligible to be preloaded\n\t\t\t\tif( this.shouldPreload( background ) && !/autoplay=(1|true|yes)/gi.test( backgroundIframe ) ) {\n\t\t\t\t\tif( backgroundIframeElement.getAttribute( 'src' ) !== backgroundIframe ) {\n\t\t\t\t\t\tbackgroundIframeElement.setAttribute( 'src', backgroundIframe );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\tthis.layout( slide );\n\n\t}\n\n\t/**\n\t * Applies JS-dependent layout helpers for the scope.\n\t */\n\tlayout( scopeElement ) {\n\n\t\t// Autosize text with the r-fit-text class based on the\n\t\t// size of its container. This needs to happen after the\n\t\t// slide is visible in order to measure the text.\n\t\tArray.from( scopeElement.querySelectorAll( '.r-fit-text' ) ).forEach( element => {\n\t\t\tfitty( element, {\n\t\t\t\tminSize: 24,\n\t\t\t\tmaxSize: this.Reveal.getConfig().height * 0.8,\n\t\t\t\tobserveMutations: false,\n\t\t\t\tobserveWindow: false\n\t\t\t} );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Unloads and hides the given slide. This is called when the\n\t * slide is moved outside of the configured view distance.\n\t *\n\t * @param {HTMLElement} slide\n\t */\n\tunload( slide ) {\n\n\t\t// Hide the slide element\n\t\tslide.style.display = 'none';\n\n\t\t// Hide the corresponding background element\n\t\tlet background = this.Reveal.getSlideBackground( slide );\n\t\tif( background ) {\n\t\t\tbackground.style.display = 'none';\n\n\t\t\t// Unload any background iframes\n\t\t\tqueryAll( background, 'iframe[src]' ).forEach( element => {\n\t\t\t\telement.removeAttribute( 'src' );\n\t\t\t} );\n\t\t}\n\n\t\t// Reset lazy-loaded media elements with src attributes\n\t\tqueryAll( slide, 'video[data-lazy-loaded][src], audio[data-lazy-loaded][src], iframe[data-lazy-loaded][src]' ).forEach( element => {\n\t\t\telement.setAttribute( 'data-src', element.getAttribute( 'src' ) );\n\t\t\telement.removeAttribute( 'src' );\n\t\t} );\n\n\t\t// Reset lazy-loaded media elements with <source> children\n\t\tqueryAll( slide, 'video[data-lazy-loaded] source[src], audio source[src]' ).forEach( source => {\n\t\t\tsource.setAttribute( 'data-src', source.getAttribute( 'src' ) );\n\t\t\tsource.removeAttribute( 'src' );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Enforces origin-specific format rules for embedded media.\n\t */\n\tformatEmbeddedContent() {\n\n\t\tlet _appendParamToIframeSource = ( sourceAttribute, sourceURL, param ) => {\n\t\t\tqueryAll( this.Reveal.getSlidesElement(), 'iframe['+ sourceAttribute +'*=\"'+ sourceURL +'\"]' ).forEach( el => {\n\t\t\t\tlet src = el.getAttribute( sourceAttribute );\n\t\t\t\tif( src && src.indexOf( param ) === -1 ) {\n\t\t\t\t\tel.setAttribute( sourceAttribute, src + ( !/\\?/.test( src ) ? '?' : '&' ) + param );\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\n\t\t// YouTube frames must include \"?enablejsapi=1\"\n\t\t_appendParamToIframeSource( 'src', 'youtube.com/embed/', 'enablejsapi=1' );\n\t\t_appendParamToIframeSource( 'data-src', 'youtube.com/embed/', 'enablejsapi=1' );\n\n\t\t// Vimeo frames must include \"?api=1\"\n\t\t_appendParamToIframeSource( 'src', 'player.vimeo.com/', 'api=1' );\n\t\t_appendParamToIframeSource( 'data-src', 'player.vimeo.com/', 'api=1' );\n\n\t}\n\n\t/**\n\t * Start playback of any embedded content inside of\n\t * the given element.\n\t *\n\t * @param {HTMLElement} element\n\t */\n\tstartEmbeddedContent( element ) {\n\n\t\tif( element && !this.Reveal.isSpeakerNotes() ) {\n\n\t\t\t// Restart GIFs\n\t\t\tqueryAll( element, 'img[src$=\".gif\"]' ).forEach( el => {\n\t\t\t\t// Setting the same unchanged source like this was confirmed\n\t\t\t\t// to work in Chrome, FF & Safari\n\t\t\t\tel.setAttribute( 'src', el.getAttribute( 'src' ) );\n\t\t\t} );\n\n\t\t\t// HTML5 media elements\n\t\t\tqueryAll( element, 'video, audio' ).forEach( el => {\n\t\t\t\tif( closest( el, '.fragment' ) && !closest( el, '.fragment.visible' ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// Prefer an explicit global autoplay setting\n\t\t\t\tlet autoplay = this.Reveal.getConfig().autoPlayMedia;\n\n\t\t\t\t// If no global setting is available, fall back on the element's\n\t\t\t\t// own autoplay setting\n\t\t\t\tif( typeof autoplay !== 'boolean' ) {\n\t\t\t\t\tautoplay = el.hasAttribute( 'data-autoplay' ) || !!closest( el, '.slide-background' );\n\t\t\t\t}\n\n\t\t\t\tif( autoplay && typeof el.play === 'function' ) {\n\n\t\t\t\t\t// If the media is ready, start playback\n\t\t\t\t\tif( el.readyState > 1 ) {\n\t\t\t\t\t\tthis.startEmbeddedMedia( { target: el } );\n\t\t\t\t\t}\n\t\t\t\t\t// Mobile devices never fire a loaded event so instead\n\t\t\t\t\t// of waiting, we initiate playback\n\t\t\t\t\telse if( isMobile ) {\n\t\t\t\t\t\tlet promise = el.play();\n\n\t\t\t\t\t\t// If autoplay does not work, ensure that the controls are visible so\n\t\t\t\t\t\t// that the viewer can start the media on their own\n\t\t\t\t\t\tif( promise && typeof promise.catch === 'function' && el.controls === false ) {\n\t\t\t\t\t\t\tpromise.catch( () => {\n\t\t\t\t\t\t\t\tel.controls = true;\n\n\t\t\t\t\t\t\t\t// Once the video does start playing, hide the controls again\n\t\t\t\t\t\t\t\tel.addEventListener( 'play', () => {\n\t\t\t\t\t\t\t\t\tel.controls = false;\n\t\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// If the media isn't loaded, wait before playing\n\t\t\t\t\telse {\n\t\t\t\t\t\tel.removeEventListener( 'loadeddata', this.startEmbeddedMedia ); // remove first to avoid dupes\n\t\t\t\t\t\tel.addEventListener( 'loadeddata', this.startEmbeddedMedia );\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Normal iframes\n\t\t\tqueryAll( element, 'iframe[src]' ).forEach( el => {\n\t\t\t\tif( closest( el, '.fragment' ) && !closest( el, '.fragment.visible' ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tthis.startEmbeddedIframe( { target: el } );\n\t\t\t} );\n\n\t\t\t// Lazy loading iframes\n\t\t\tqueryAll( element, 'iframe[data-src]' ).forEach( el => {\n\t\t\t\tif( closest( el, '.fragment' ) && !closest( el, '.fragment.visible' ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif( el.getAttribute( 'src' ) !== el.getAttribute( 'data-src' ) ) {\n\t\t\t\t\tel.removeEventListener( 'load', this.startEmbeddedIframe ); // remove first to avoid dupes\n\t\t\t\t\tel.addEventListener( 'load', this.startEmbeddedIframe );\n\t\t\t\t\tel.setAttribute( 'src', el.getAttribute( 'data-src' ) );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Starts playing an embedded video/audio element after\n\t * it has finished loading.\n\t *\n\t * @param {object} event\n\t */\n\tstartEmbeddedMedia( event ) {\n\n\t\tlet isAttachedToDOM = !!closest( event.target, 'html' ),\n\t\t\tisVisible \t\t= !!closest( event.target, '.present' );\n\n\t\tif( isAttachedToDOM && isVisible ) {\n\t\t\tevent.target.currentTime = 0;\n\t\t\tevent.target.play();\n\t\t}\n\n\t\tevent.target.removeEventListener( 'loadeddata', this.startEmbeddedMedia );\n\n\t}\n\n\t/**\n\t * \"Starts\" the content of an embedded iframe using the\n\t * postMessage API.\n\t *\n\t * @param {object} event\n\t */\n\tstartEmbeddedIframe( event ) {\n\n\t\tlet iframe = event.target;\n\n\t\tif( iframe && iframe.contentWindow ) {\n\n\t\t\tlet isAttachedToDOM = !!closest( event.target, 'html' ),\n\t\t\t\tisVisible \t\t= !!closest( event.target, '.present' );\n\n\t\t\tif( isAttachedToDOM && isVisible ) {\n\n\t\t\t\t// Prefer an explicit global autoplay setting\n\t\t\t\tlet autoplay = this.Reveal.getConfig().autoPlayMedia;\n\n\t\t\t\t// If no global setting is available, fall back on the element's\n\t\t\t\t// own autoplay setting\n\t\t\t\tif( typeof autoplay !== 'boolean' ) {\n\t\t\t\t\tautoplay = iframe.hasAttribute( 'data-autoplay' ) || !!closest( iframe, '.slide-background' );\n\t\t\t\t}\n\n\t\t\t\t// YouTube postMessage API\n\t\t\t\tif( /youtube\\.com\\/embed\\//.test( iframe.getAttribute( 'src' ) ) && autoplay ) {\n\t\t\t\t\tiframe.contentWindow.postMessage( '{\"event\":\"command\",\"func\":\"playVideo\",\"args\":\"\"}', '*' );\n\t\t\t\t}\n\t\t\t\t// Vimeo postMessage API\n\t\t\t\telse if( /player\\.vimeo\\.com\\//.test( iframe.getAttribute( 'src' ) ) && autoplay ) {\n\t\t\t\t\tiframe.contentWindow.postMessage( '{\"method\":\"play\"}', '*' );\n\t\t\t\t}\n\t\t\t\t// Generic postMessage API\n\t\t\t\telse {\n\t\t\t\t\tiframe.contentWindow.postMessage( 'slide:start', '*' );\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Stop playback of any embedded content inside of\n\t * the targeted slide.\n\t *\n\t * @param {HTMLElement} element\n\t */\n\tstopEmbeddedContent( element, options = {} ) {\n\n\t\toptions = extend( {\n\t\t\t// Defaults\n\t\t\tunloadIframes: true\n\t\t}, options );\n\n\t\tif( element && element.parentNode ) {\n\t\t\t// HTML5 media elements\n\t\t\tqueryAll( element, 'video, audio' ).forEach( el => {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.pause === 'function' ) {\n\t\t\t\t\tel.setAttribute('data-paused-by-reveal', '');\n\t\t\t\t\tel.pause();\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Generic postMessage API for non-lazy loaded iframes\n\t\t\tqueryAll( element, 'iframe' ).forEach( el => {\n\t\t\t\tif( el.contentWindow ) el.contentWindow.postMessage( 'slide:stop', '*' );\n\t\t\t\tel.removeEventListener( 'load', this.startEmbeddedIframe );\n\t\t\t});\n\n\t\t\t// YouTube postMessage API\n\t\t\tqueryAll( element, 'iframe[src*=\"youtube.com/embed/\"]' ).forEach( el => {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && el.contentWindow && typeof el.contentWindow.postMessage === 'function' ) {\n\t\t\t\t\tel.contentWindow.postMessage( '{\"event\":\"command\",\"func\":\"pauseVideo\",\"args\":\"\"}', '*' );\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// Vimeo postMessage API\n\t\t\tqueryAll( element, 'iframe[src*=\"player.vimeo.com/\"]' ).forEach( el => {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && el.contentWindow && typeof el.contentWindow.postMessage === 'function' ) {\n\t\t\t\t\tel.contentWindow.postMessage( '{\"method\":\"pause\"}', '*' );\n\t\t\t\t}\n\t\t\t});\n\n\t\t\tif( options.unloadIframes === true ) {\n\t\t\t\t// Unload lazy-loaded iframes\n\t\t\t\tqueryAll( element, 'iframe[data-src]' ).forEach( el => {\n\t\t\t\t\t// Only removing the src doesn't actually unload the frame\n\t\t\t\t\t// in all browsers (Firefox) so we set it to blank first\n\t\t\t\t\tel.setAttribute( 'src', 'about:blank' );\n\t\t\t\t\tel.removeAttribute( 'src' );\n\t\t\t\t} );\n\t\t\t}\n\t\t}\n\n\t}\n\n}\n","/**\n * Handles the display of reveal.js' optional slide number.\n */\nexport default class SlideNumber {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t}\n\n\trender() {\n\n\t\tthis.element = document.createElement( 'div' );\n\t\tthis.element.className = 'slide-number';\n\t\tthis.Reveal.getRevealElement().appendChild( this.element );\n\n\t}\n\n\t/**\n\t * Called when the reveal.js config is updated.\n\t */\n\tconfigure( config, oldConfig ) {\n\n\t\tlet slideNumberDisplay = 'none';\n\t\tif( config.slideNumber && !this.Reveal.isPrintView() ) {\n\t\t\tif( config.showSlideNumber === 'all' ) {\n\t\t\t\tslideNumberDisplay = 'block';\n\t\t\t}\n\t\t\telse if( config.showSlideNumber === 'speaker' && this.Reveal.isSpeakerNotes() ) {\n\t\t\t\tslideNumberDisplay = 'block';\n\t\t\t}\n\t\t}\n\n\t\tthis.element.style.display = slideNumberDisplay;\n\n\t}\n\n\t/**\n\t * Updates the slide number to match the current slide.\n\t */\n\tupdate() {\n\n\t\t// Update slide number if enabled\n\t\tif( this.Reveal.getConfig().slideNumber && this.element ) {\n\t\t\tthis.element.innerHTML = this.getSlideNumber();\n\t\t}\n\n\t}\n\n\t/**\n\t * Returns the HTML string corresponding to the current slide\n\t * number, including formatting.\n\t */\n\tgetSlideNumber( slide = this.Reveal.getCurrentSlide() ) {\n\n\t\tlet config = this.Reveal.getConfig();\n\t\tlet value;\n\t\tlet format = 'h.v';\n\n\t\tif ( typeof config.slideNumber === 'function' ) {\n\t\t\tvalue = config.slideNumber( slide );\n\t\t} else {\n\t\t\t// Check if a custom number format is available\n\t\t\tif( typeof config.slideNumber === 'string' ) {\n\t\t\t\tformat = config.slideNumber;\n\t\t\t}\n\n\t\t\t// If there are ONLY vertical slides in this deck, always use\n\t\t\t// a flattened slide number\n\t\t\tif( !/c/.test( format ) && this.Reveal.getHorizontalSlides().length === 1 ) {\n\t\t\t\tformat = 'c';\n\t\t\t}\n\n\t\t\t// Offset the current slide number by 1 to make it 1-indexed\n\t\t\tlet horizontalOffset = slide && slide.dataset.visibility === 'uncounted' ? 0 : 1;\n\n\t\t\tvalue = [];\n\t\t\tswitch( format ) {\n\t\t\t\tcase 'c':\n\t\t\t\t\tvalue.push( this.Reveal.getSlidePastCount( slide ) + horizontalOffset );\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'c/t':\n\t\t\t\t\tvalue.push( this.Reveal.getSlidePastCount( slide ) + horizontalOffset, '/', this.Reveal.getTotalSlides() );\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tlet indices = this.Reveal.getIndices( slide );\n\t\t\t\t\tvalue.push( indices.h + horizontalOffset );\n\t\t\t\t\tlet sep = format === 'h/v' ? '/' : '.';\n\t\t\t\t\tif( this.Reveal.isVerticalSlide( slide ) ) value.push( sep, indices.v + 1 );\n\t\t\t}\n\t\t}\n\n\t\tlet url = '#' + this.Reveal.location.getHash( slide );\n\t\treturn this.formatNumber( value[0], value[1], value[2], url );\n\n\t}\n\n\t/**\n\t * Applies HTML formatting to a slide number before it's\n\t * written to the DOM.\n\t *\n\t * @param {number} a Current slide\n\t * @param {string} delimiter Character to separate slide numbers\n\t * @param {(number|*)} b Total slides\n\t * @param {HTMLElement} [url='#'+locationHash()] The url to link to\n\t * @return {string} HTML string fragment\n\t */\n\tformatNumber( a, delimiter, b, url = '#' + this.Reveal.location.getHash() ) {\n\n\t\tif( typeof b === 'number' && !isNaN( b ) ) {\n\t\t\treturn `<a href=\"${url}\">\n\t\t\t\t\t<span class=\"slide-number-a\">${a}</span>\n\t\t\t\t\t<span class=\"slide-number-delimiter\">${delimiter}</span>\n\t\t\t\t\t<span class=\"slide-number-b\">${b}</span>\n\t\t\t\t\t</a>`;\n\t\t}\n\t\telse {\n\t\t\treturn `<a href=\"${url}\">\n\t\t\t\t\t<span class=\"slide-number-a\">${a}</span>\n\t\t\t\t\t</a>`;\n\t\t}\n\n\t}\n\n\tdestroy() {\n\n\t\tthis.element.remove();\n\n\t}\n\n}","/**\n * Makes it possible to jump to a slide by entering its\n * slide number or id.\n */\nexport default class JumpToSlide {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t\tthis.onInput = this.onInput.bind( this );\n\t\tthis.onBlur = this.onBlur.bind( this );\n\t\tthis.onKeyDown = this.onKeyDown.bind( this );\n\n\t}\n\n\trender() {\n\n\t\tthis.element = document.createElement( 'div' );\n\t\tthis.element.className = 'jump-to-slide';\n\n this.jumpInput = document.createElement( 'input' );\n this.jumpInput.type = 'text';\n this.jumpInput.className = 'jump-to-slide-input';\n this.jumpInput.placeholder = 'Jump to slide';\n\t\tthis.jumpInput.addEventListener( 'input', this.onInput );\n\t\tthis.jumpInput.addEventListener( 'keydown', this.onKeyDown );\n\t\tthis.jumpInput.addEventListener( 'blur', this.onBlur );\n\n this.element.appendChild( this.jumpInput );\n\n\t}\n\n\tshow() {\n\n\t\tthis.indicesOnShow = this.Reveal.getIndices();\n\n\t\tthis.Reveal.getRevealElement().appendChild( this.element );\n\t\tthis.jumpInput.focus();\n\n\t}\n\n\thide() {\n\n\t\tif( this.isVisible() ) {\n\t\t\tthis.element.remove();\n\t\t\tthis.jumpInput.value = '';\n\n\t\t\tclearTimeout( this.jumpTimeout );\n\t\t\tdelete this.jumpTimeout;\n\t\t}\n\n\t}\n\n\tisVisible() {\n\n\t\treturn !!this.element.parentNode;\n\n\t}\n\n\t/**\n\t * Parses the current input and jumps to the given slide.\n\t */\n\tjump() {\n\n\t\tclearTimeout( this.jumpTimeout );\n\t\tdelete this.jumpTimeout;\n\n\t\tconst query = this.jumpInput.value.trim( '' );\n\t\tlet indices = this.Reveal.location.getIndicesFromHash( query, { oneBasedIndex: true } );\n\n\t\t// If no valid index was found and the input query is a\n\t\t// string, fall back on a simple search\n\t\tif( !indices && /\\S+/i.test( query ) && query.length > 1 ) {\n\t\t\tindices = this.search( query );\n\t\t}\n\n\t\tif( indices && query !== '' ) {\n\t\t\tthis.Reveal.slide( indices.h, indices.v, indices.f );\n\t\t\treturn true;\n\t\t}\n\t\telse {\n\t\t\tthis.Reveal.slide( this.indicesOnShow.h, this.indicesOnShow.v, this.indicesOnShow.f );\n\t\t\treturn false;\n\t\t}\n\n\t}\n\n\tjumpAfter( delay ) {\n\n\t\tclearTimeout( this.jumpTimeout );\n\t\tthis.jumpTimeout = setTimeout( () => this.jump(), delay );\n\n\t}\n\n\t/**\n\t * A lofi search that looks for the given query in all\n\t * of our slides and returns the first match.\n\t */\n\tsearch( query ) {\n\n\t\tconst regex = new RegExp( '\\\\b' + query.trim() + '\\\\b', 'i' );\n\n\t\tconst slide = this.Reveal.getSlides().find( ( slide ) => {\n\t\t\treturn regex.test( slide.innerText );\n\t\t} );\n\n\t\tif( slide ) {\n\t\t\treturn this.Reveal.getIndices( slide );\n\t\t}\n\t\telse {\n\t\t\treturn null;\n\t\t}\n\n\t}\n\n\t/**\n\t * Reverts back to the slide we were on when jump to slide was\n\t * invoked.\n\t */\n\tcancel() {\n\n\t\tthis.Reveal.slide( this.indicesOnShow.h, this.indicesOnShow.v, this.indicesOnShow.f );\n\t\tthis.hide();\n\n\t}\n\n\tconfirm() {\n\n\t\tthis.jump();\n\t\tthis.hide();\n\n\t}\n\n\tdestroy() {\n\n\t\tthis.jumpInput.removeEventListener( 'input', this.onInput );\n\t\tthis.jumpInput.removeEventListener( 'keydown', this.onKeyDown );\n\t\tthis.jumpInput.removeEventListener( 'blur', this.onBlur );\n\n\t\tthis.element.remove();\n\n\t}\n\n\tonKeyDown( event ) {\n\n\t\tif( event.keyCode === 13 ) {\n\t\t\tthis.confirm();\n\t\t}\n\t\telse if( event.keyCode === 27 ) {\n\t\t\tthis.cancel();\n\n\t\t\tevent.stopImmediatePropagation();\n\t\t}\n\n\t}\n\n\tonInput( event ) {\n\n\t\tthis.jumpAfter( 200 );\n\n\t}\n\n\tonBlur() {\n\n\t\tsetTimeout( () => this.hide(), 1 );\n\n\t}\n\n}","/**\n * Converts various color input formats to an {r:0,g:0,b:0} object.\n *\n * @param {string} color The string representation of a color\n * @example\n * colorToRgb('#000');\n * @example\n * colorToRgb('#000000');\n * @example\n * colorToRgb('rgb(0,0,0)');\n * @example\n * colorToRgb('rgba(0,0,0)');\n *\n * @return {{r: number, g: number, b: number, [a]: number}|null}\n */\nexport const colorToRgb = ( color ) => {\n\n\tlet hex3 = color.match( /^#([0-9a-f]{3})$/i );\n\tif( hex3 && hex3[1] ) {\n\t\thex3 = hex3[1];\n\t\treturn {\n\t\t\tr: parseInt( hex3.charAt( 0 ), 16 ) * 0x11,\n\t\t\tg: parseInt( hex3.charAt( 1 ), 16 ) * 0x11,\n\t\t\tb: parseInt( hex3.charAt( 2 ), 16 ) * 0x11\n\t\t};\n\t}\n\n\tlet hex6 = color.match( /^#([0-9a-f]{6})$/i );\n\tif( hex6 && hex6[1] ) {\n\t\thex6 = hex6[1];\n\t\treturn {\n\t\t\tr: parseInt( hex6.slice( 0, 2 ), 16 ),\n\t\t\tg: parseInt( hex6.slice( 2, 4 ), 16 ),\n\t\t\tb: parseInt( hex6.slice( 4, 6 ), 16 )\n\t\t};\n\t}\n\n\tlet rgb = color.match( /^rgb\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\)$/i );\n\tif( rgb ) {\n\t\treturn {\n\t\t\tr: parseInt( rgb[1], 10 ),\n\t\t\tg: parseInt( rgb[2], 10 ),\n\t\t\tb: parseInt( rgb[3], 10 )\n\t\t};\n\t}\n\n\tlet rgba = color.match( /^rgba\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\,\\s*([\\d]+|[\\d]*.[\\d]+)\\s*\\)$/i );\n\tif( rgba ) {\n\t\treturn {\n\t\t\tr: parseInt( rgba[1], 10 ),\n\t\t\tg: parseInt( rgba[2], 10 ),\n\t\t\tb: parseInt( rgba[3], 10 ),\n\t\t\ta: parseFloat( rgba[4] )\n\t\t};\n\t}\n\n\treturn null;\n\n}\n\n/**\n * Calculates brightness on a scale of 0-255.\n *\n * @param {string} color See colorToRgb for supported formats.\n * @see {@link colorToRgb}\n */\nexport const colorBrightness = ( color ) => {\n\n\tif( typeof color === 'string' ) color = colorToRgb( color );\n\n\tif( color ) {\n\t\treturn ( color.r * 299 + color.g * 587 + color.b * 114 ) / 1000;\n\t}\n\n\treturn null;\n\n}","import { queryAll } from '../utils/util.js'\nimport { colorToRgb, colorBrightness } from '../utils/color.js'\n\n/**\n * Creates and updates slide backgrounds.\n */\nexport default class Backgrounds {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t}\n\n\trender() {\n\n\t\tthis.element = document.createElement( 'div' );\n\t\tthis.element.className = 'backgrounds';\n\t\tthis.Reveal.getRevealElement().appendChild( this.element );\n\n\t}\n\n\t/**\n\t * Creates the slide background elements and appends them\n\t * to the background container. One element is created per\n\t * slide no matter if the given slide has visible background.\n\t */\n\tcreate() {\n\n\t\t// Clear prior backgrounds\n\t\tthis.element.innerHTML = '';\n\t\tthis.element.classList.add( 'no-transition' );\n\n\t\t// Iterate over all horizontal slides\n\t\tthis.Reveal.getHorizontalSlides().forEach( slideh => {\n\n\t\t\tlet backgroundStack = this.createBackground( slideh, this.element );\n\n\t\t\t// Iterate over all vertical slides\n\t\t\tqueryAll( slideh, 'section' ).forEach( slidev => {\n\n\t\t\t\tthis.createBackground( slidev, backgroundStack );\n\n\t\t\t\tbackgroundStack.classList.add( 'stack' );\n\n\t\t\t} );\n\n\t\t} );\n\n\t\t// Add parallax background if specified\n\t\tif( this.Reveal.getConfig().parallaxBackgroundImage ) {\n\n\t\t\tthis.element.style.backgroundImage = 'url(\"' + this.Reveal.getConfig().parallaxBackgroundImage + '\")';\n\t\t\tthis.element.style.backgroundSize = this.Reveal.getConfig().parallaxBackgroundSize;\n\t\t\tthis.element.style.backgroundRepeat = this.Reveal.getConfig().parallaxBackgroundRepeat;\n\t\t\tthis.element.style.backgroundPosition = this.Reveal.getConfig().parallaxBackgroundPosition;\n\n\t\t\t// Make sure the below properties are set on the element - these properties are\n\t\t\t// needed for proper transitions to be set on the element via CSS. To remove\n\t\t\t// annoying background slide-in effect when the presentation starts, apply\n\t\t\t// these properties after short time delay\n\t\t\tsetTimeout( () => {\n\t\t\t\tthis.Reveal.getRevealElement().classList.add( 'has-parallax-background' );\n\t\t\t}, 1 );\n\n\t\t}\n\t\telse {\n\n\t\t\tthis.element.style.backgroundImage = '';\n\t\t\tthis.Reveal.getRevealElement().classList.remove( 'has-parallax-background' );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Creates a background for the given slide.\n\t *\n\t * @param {HTMLElement} slide\n\t * @param {HTMLElement} container The element that the background\n\t * should be appended to\n\t * @return {HTMLElement} New background div\n\t */\n\tcreateBackground( slide, container ) {\n\n\t\t// Main slide background element\n\t\tlet element = document.createElement( 'div' );\n\t\telement.className = 'slide-background ' + slide.className.replace( /present|past|future/, '' );\n\n\t\t// Inner background element that wraps images/videos/iframes\n\t\tlet contentElement = document.createElement( 'div' );\n\t\tcontentElement.className = 'slide-background-content';\n\n\t\telement.appendChild( contentElement );\n\t\tcontainer.appendChild( element );\n\n\t\tslide.slideBackgroundElement = element;\n\t\tslide.slideBackgroundContentElement = contentElement;\n\n\t\t// Syncs the background to reflect all current background settings\n\t\tthis.sync( slide );\n\n\t\treturn element;\n\n\t}\n\n\t/**\n\t * Renders all of the visual properties of a slide background\n\t * based on the various background attributes.\n\t *\n\t * @param {HTMLElement} slide\n\t */\n\tsync( slide ) {\n\n\t\tconst element = slide.slideBackgroundElement,\n\t\t\tcontentElement = slide.slideBackgroundContentElement;\n\n\t\tconst data = {\n\t\t\tbackground: slide.getAttribute( 'data-background' ),\n\t\t\tbackgroundSize: slide.getAttribute( 'data-background-size' ),\n\t\t\tbackgroundImage: slide.getAttribute( 'data-background-image' ),\n\t\t\tbackgroundVideo: slide.getAttribute( 'data-background-video' ),\n\t\t\tbackgroundIframe: slide.getAttribute( 'data-background-iframe' ),\n\t\t\tbackgroundColor: slide.getAttribute( 'data-background-color' ),\n\t\t\tbackgroundGradient: slide.getAttribute( 'data-background-gradient' ),\n\t\t\tbackgroundRepeat: slide.getAttribute( 'data-background-repeat' ),\n\t\t\tbackgroundPosition: slide.getAttribute( 'data-background-position' ),\n\t\t\tbackgroundTransition: slide.getAttribute( 'data-background-transition' ),\n\t\t\tbackgroundOpacity: slide.getAttribute( 'data-background-opacity' ),\n\t\t};\n\n\t\tconst dataPreload = slide.hasAttribute( 'data-preload' );\n\n\t\t// Reset the prior background state in case this is not the\n\t\t// initial sync\n\t\tslide.classList.remove( 'has-dark-background' );\n\t\tslide.classList.remove( 'has-light-background' );\n\n\t\telement.removeAttribute( 'data-loaded' );\n\t\telement.removeAttribute( 'data-background-hash' );\n\t\telement.removeAttribute( 'data-background-size' );\n\t\telement.removeAttribute( 'data-background-transition' );\n\t\telement.style.backgroundColor = '';\n\n\t\tcontentElement.style.backgroundSize = '';\n\t\tcontentElement.style.backgroundRepeat = '';\n\t\tcontentElement.style.backgroundPosition = '';\n\t\tcontentElement.style.backgroundImage = '';\n\t\tcontentElement.style.opacity = '';\n\t\tcontentElement.innerHTML = '';\n\n\t\tif( data.background ) {\n\t\t\t// Auto-wrap image urls in url(...)\n\t\t\tif( /^(http|file|\\/\\/)/gi.test( data.background ) || /\\.(svg|png|jpg|jpeg|gif|bmp|webp)([?#\\s]|$)/gi.test( data.background ) ) {\n\t\t\t\tslide.setAttribute( 'data-background-image', data.background );\n\t\t\t}\n\t\t\telse {\n\t\t\t\telement.style.background = data.background;\n\t\t\t}\n\t\t}\n\n\t\t// Create a hash for this combination of background settings.\n\t\t// This is used to determine when two slide backgrounds are\n\t\t// the same.\n\t\tif( data.background || data.backgroundColor || data.backgroundGradient || data.backgroundImage || data.backgroundVideo || data.backgroundIframe ) {\n\t\t\telement.setAttribute( 'data-background-hash', data.background +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundSize +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundImage +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundVideo +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundIframe +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundColor +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundGradient +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundRepeat +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundPosition +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundTransition +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundOpacity );\n\t\t}\n\n\t\t// Additional and optional background properties\n\t\tif( data.backgroundSize ) element.setAttribute( 'data-background-size', data.backgroundSize );\n\t\tif( data.backgroundColor ) element.style.backgroundColor = data.backgroundColor;\n\t\tif( data.backgroundGradient ) element.style.backgroundImage = data.backgroundGradient;\n\t\tif( data.backgroundTransition ) element.setAttribute( 'data-background-transition', data.backgroundTransition );\n\n\t\tif( dataPreload ) element.setAttribute( 'data-preload', '' );\n\n\t\t// Background image options are set on the content wrapper\n\t\tif( data.backgroundSize ) contentElement.style.backgroundSize = data.backgroundSize;\n\t\tif( data.backgroundRepeat ) contentElement.style.backgroundRepeat = data.backgroundRepeat;\n\t\tif( data.backgroundPosition ) contentElement.style.backgroundPosition = data.backgroundPosition;\n\t\tif( data.backgroundOpacity ) contentElement.style.opacity = data.backgroundOpacity;\n\n\t\tconst contrastClass = this.getContrastClass( slide );\n\n\t\tif( typeof contrastClass === 'string' ) {\n\t\t\tslide.classList.add( contrastClass );\n\t\t}\n\n\t}\n\n\t/**\n\t * Returns a class name that can be applied to a slide to indicate\n\t * if it has a light or dark background.\n\t *\n\t * @param {*} slide\n\t *\n\t * @returns {string|null}\n\t */\n\tgetContrastClass( slide ) {\n\n\t\tconst element = slide.slideBackgroundElement;\n\n\t\t// If this slide has a background color, we add a class that\n\t\t// signals if it is light or dark. If the slide has no background\n\t\t// color, no class will be added\n\t\tlet contrastColor = slide.getAttribute( 'data-background-color' );\n\n\t\t// If no bg color was found, or it cannot be converted by colorToRgb, check the computed background\n\t\tif( !contrastColor || !colorToRgb( contrastColor ) ) {\n\t\t\tlet computedBackgroundStyle = window.getComputedStyle( element );\n\t\t\tif( computedBackgroundStyle && computedBackgroundStyle.backgroundColor ) {\n\t\t\t\tcontrastColor = computedBackgroundStyle.backgroundColor;\n\t\t\t}\n\t\t}\n\n\t\tif( contrastColor ) {\n\t\t\tconst rgb = colorToRgb( contrastColor );\n\n\t\t\t// Ignore fully transparent backgrounds. Some browsers return\n\t\t\t// rgba(0,0,0,0) when reading the computed background color of\n\t\t\t// an element with no background\n\t\t\tif( rgb && rgb.a !== 0 ) {\n\t\t\t\tif( colorBrightness( contrastColor ) < 128 ) {\n\t\t\t\t\treturn 'has-dark-background';\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\treturn 'has-light-background';\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Bubble the 'has-light-background'/'has-dark-background' classes.\n\t */\n\tbubbleSlideContrastClassToElement( slide, target ) {\n\n\t\t[ 'has-light-background', 'has-dark-background' ].forEach( classToBubble => {\n\t\t\tif( slide.classList.contains( classToBubble ) ) {\n\t\t\t\ttarget.classList.add( classToBubble );\n\t\t\t}\n\t\t\telse {\n\t\t\t\ttarget.classList.remove( classToBubble );\n\t\t\t}\n\t\t}, this );\n\n\t}\n\n\t/**\n\t * Updates the background elements to reflect the current\n\t * slide.\n\t *\n\t * @param {boolean} includeAll If true, the backgrounds of\n\t * all vertical slides (not just the present) will be updated.\n\t */\n\tupdate( includeAll = false ) {\n\n\t\tlet currentSlide = this.Reveal.getCurrentSlide();\n\t\tlet indices = this.Reveal.getIndices();\n\n\t\tlet currentBackground = null;\n\n\t\t// Reverse past/future classes when in RTL mode\n\t\tlet horizontalPast = this.Reveal.getConfig().rtl ? 'future' : 'past',\n\t\t\thorizontalFuture = this.Reveal.getConfig().rtl ? 'past' : 'future';\n\n\t\t// Update the classes of all backgrounds to match the\n\t\t// states of their slides (past/present/future)\n\t\tArray.from( this.element.childNodes ).forEach( ( backgroundh, h ) => {\n\n\t\t\tbackgroundh.classList.remove( 'past', 'present', 'future' );\n\n\t\t\tif( h < indices.h ) {\n\t\t\t\tbackgroundh.classList.add( horizontalPast );\n\t\t\t}\n\t\t\telse if ( h > indices.h ) {\n\t\t\t\tbackgroundh.classList.add( horizontalFuture );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundh.classList.add( 'present' );\n\n\t\t\t\t// Store a reference to the current background element\n\t\t\t\tcurrentBackground = backgroundh;\n\t\t\t}\n\n\t\t\tif( includeAll || h === indices.h ) {\n\t\t\t\tqueryAll( backgroundh, '.slide-background' ).forEach( ( backgroundv, v ) => {\n\n\t\t\t\t\tbackgroundv.classList.remove( 'past', 'present', 'future' );\n\n\t\t\t\t\tif( v < indices.v ) {\n\t\t\t\t\t\tbackgroundv.classList.add( 'past' );\n\t\t\t\t\t}\n\t\t\t\t\telse if ( v > indices.v ) {\n\t\t\t\t\t\tbackgroundv.classList.add( 'future' );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tbackgroundv.classList.add( 'present' );\n\n\t\t\t\t\t\t// Only if this is the present horizontal and vertical slide\n\t\t\t\t\t\tif( h === indices.h ) currentBackground = backgroundv;\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\t\t\t}\n\n\t\t} );\n\n\t\t// Stop content inside of previous backgrounds\n\t\tif( this.previousBackground ) {\n\n\t\t\tthis.Reveal.slideContent.stopEmbeddedContent( this.previousBackground, { unloadIframes: !this.Reveal.slideContent.shouldPreload( this.previousBackground ) } );\n\n\t\t}\n\n\t\t// Start content in the current background\n\t\tif( currentBackground ) {\n\n\t\t\tthis.Reveal.slideContent.startEmbeddedContent( currentBackground );\n\n\t\t\tlet currentBackgroundContent = currentBackground.querySelector( '.slide-background-content' );\n\t\t\tif( currentBackgroundContent ) {\n\n\t\t\t\tlet backgroundImageURL = currentBackgroundContent.style.backgroundImage || '';\n\n\t\t\t\t// Restart GIFs (doesn't work in Firefox)\n\t\t\t\tif( /\\.gif/i.test( backgroundImageURL ) ) {\n\t\t\t\t\tcurrentBackgroundContent.style.backgroundImage = '';\n\t\t\t\t\twindow.getComputedStyle( currentBackgroundContent ).opacity;\n\t\t\t\t\tcurrentBackgroundContent.style.backgroundImage = backgroundImageURL;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\t// Don't transition between identical backgrounds. This\n\t\t\t// prevents unwanted flicker.\n\t\t\tlet previousBackgroundHash = this.previousBackground ? this.previousBackground.getAttribute( 'data-background-hash' ) : null;\n\t\t\tlet currentBackgroundHash = currentBackground.getAttribute( 'data-background-hash' );\n\t\t\tif( currentBackgroundHash && currentBackgroundHash === previousBackgroundHash && currentBackground !== this.previousBackground ) {\n\t\t\t\tthis.element.classList.add( 'no-transition' );\n\t\t\t}\n\n\t\t\tthis.previousBackground = currentBackground;\n\n\t\t}\n\n\t\t// If there's a background brightness flag for this slide,\n\t\t// bubble it to the .reveal container\n\t\tif( currentSlide ) {\n\t\t\tthis.bubbleSlideContrastClassToElement( currentSlide, this.Reveal.getRevealElement() );\n\t\t}\n\n\t\t// Allow the first background to apply without transition\n\t\tsetTimeout( () => {\n\t\t\tthis.element.classList.remove( 'no-transition' );\n\t\t}, 1 );\n\n\t}\n\n\t/**\n\t * Updates the position of the parallax background based\n\t * on the current slide index.\n\t */\n\tupdateParallax() {\n\n\t\tlet indices = this.Reveal.getIndices();\n\n\t\tif( this.Reveal.getConfig().parallaxBackgroundImage ) {\n\n\t\t\tlet horizontalSlides = this.Reveal.getHorizontalSlides(),\n\t\t\t\tverticalSlides = this.Reveal.getVerticalSlides();\n\n\t\t\tlet backgroundSize = this.element.style.backgroundSize.split( ' ' ),\n\t\t\t\tbackgroundWidth, backgroundHeight;\n\n\t\t\tif( backgroundSize.length === 1 ) {\n\t\t\t\tbackgroundWidth = backgroundHeight = parseInt( backgroundSize[0], 10 );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundWidth = parseInt( backgroundSize[0], 10 );\n\t\t\t\tbackgroundHeight = parseInt( backgroundSize[1], 10 );\n\t\t\t}\n\n\t\t\tlet slideWidth = this.element.offsetWidth,\n\t\t\t\thorizontalSlideCount = horizontalSlides.length,\n\t\t\t\thorizontalOffsetMultiplier,\n\t\t\t\thorizontalOffset;\n\n\t\t\tif( typeof this.Reveal.getConfig().parallaxBackgroundHorizontal === 'number' ) {\n\t\t\t\thorizontalOffsetMultiplier = this.Reveal.getConfig().parallaxBackgroundHorizontal;\n\t\t\t}\n\t\t\telse {\n\t\t\t\thorizontalOffsetMultiplier = horizontalSlideCount > 1 ? ( backgroundWidth - slideWidth ) / ( horizontalSlideCount-1 ) : 0;\n\t\t\t}\n\n\t\t\thorizontalOffset = horizontalOffsetMultiplier * indices.h * -1;\n\n\t\t\tlet slideHeight = this.element.offsetHeight,\n\t\t\t\tverticalSlideCount = verticalSlides.length,\n\t\t\t\tverticalOffsetMultiplier,\n\t\t\t\tverticalOffset;\n\n\t\t\tif( typeof this.Reveal.getConfig().parallaxBackgroundVertical === 'number' ) {\n\t\t\t\tverticalOffsetMultiplier = this.Reveal.getConfig().parallaxBackgroundVertical;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tverticalOffsetMultiplier = ( backgroundHeight - slideHeight ) / ( verticalSlideCount-1 );\n\t\t\t}\n\n\t\t\tverticalOffset = verticalSlideCount > 0 ? verticalOffsetMultiplier * indices.v : 0;\n\n\t\t\tthis.element.style.backgroundPosition = horizontalOffset + 'px ' + -verticalOffset + 'px';\n\n\t\t}\n\n\t}\n\n\tdestroy() {\n\n\t\tthis.element.remove();\n\n\t}\n\n}\n","\nexport const SLIDES_SELECTOR = '.slides section';\nexport const HORIZONTAL_SLIDES_SELECTOR = '.slides>section';\nexport const VERTICAL_SLIDES_SELECTOR = '.slides>section.present>section';\n\n// Methods that may not be invoked via the postMessage API\nexport const POST_MESSAGE_METHOD_BLACKLIST = /registerPlugin|registerKeyboardShortcut|addKeyBinding|addEventListener|showPreview/;\n\n// Regex for retrieving the fragment style from a class attribute\nexport const FRAGMENT_STYLE_REGEX = /fade-(down|up|right|left|out|in-then-out|in-then-semi-out)|semi-fade-out|current-visible|shrink|grow/;","import { queryAll, extend, createStyleSheet, matches, closest } from '../utils/util.js'\nimport { FRAGMENT_STYLE_REGEX } from '../utils/constants.js'\n\n// Counter used to generate unique IDs for auto-animated elements\nlet autoAnimateCounter = 0;\n\n/**\n * Automatically animates matching elements across\n * slides with the [data-auto-animate] attribute.\n */\nexport default class AutoAnimate {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t}\n\n\t/**\n\t * Runs an auto-animation between the given slides.\n\t *\n\t * @param {HTMLElement} fromSlide\n\t * @param {HTMLElement} toSlide\n\t */\n\trun( fromSlide, toSlide ) {\n\n\t\t// Clean up after prior animations\n\t\tthis.reset();\n\n\t\tlet allSlides = this.Reveal.getSlides();\n\t\tlet toSlideIndex = allSlides.indexOf( toSlide );\n\t\tlet fromSlideIndex = allSlides.indexOf( fromSlide );\n\n\t\t// Ensure that both slides are auto-animate targets with the same data-auto-animate-id value\n\t\t// (including null if absent on both) and that data-auto-animate-restart isn't set on the\n\t\t// physically latter slide (independent of slide direction)\n\t\tif( fromSlide.hasAttribute( 'data-auto-animate' ) && toSlide.hasAttribute( 'data-auto-animate' )\n\t\t\t\t&& fromSlide.getAttribute( 'data-auto-animate-id' ) === toSlide.getAttribute( 'data-auto-animate-id' ) \n\t\t\t\t&& !( toSlideIndex > fromSlideIndex ? toSlide : fromSlide ).hasAttribute( 'data-auto-animate-restart' ) ) {\n\n\t\t\t// Create a new auto-animate sheet\n\t\t\tthis.autoAnimateStyleSheet = this.autoAnimateStyleSheet || createStyleSheet();\n\n\t\t\tlet animationOptions = this.getAutoAnimateOptions( toSlide );\n\n\t\t\t// Set our starting state\n\t\t\tfromSlide.dataset.autoAnimate = 'pending';\n\t\t\ttoSlide.dataset.autoAnimate = 'pending';\n\n\t\t\t// Flag the navigation direction, needed for fragment buildup\n\t\t\tanimationOptions.slideDirection = toSlideIndex > fromSlideIndex ? 'forward' : 'backward';\n\n\t\t\t// If the from-slide is hidden because it has moved outside\n\t\t\t// the view distance, we need to temporarily show it while\n\t\t\t// measuring\n\t\t\tlet fromSlideIsHidden = fromSlide.style.display === 'none';\n\t\t\tif( fromSlideIsHidden ) fromSlide.style.display = this.Reveal.getConfig().display;\n\n\t\t\t// Inject our auto-animate styles for this transition\n\t\t\tlet css = this.getAutoAnimatableElements( fromSlide, toSlide ).map( elements => {\n\t\t\t\treturn this.autoAnimateElements( elements.from, elements.to, elements.options || {}, animationOptions, autoAnimateCounter++ );\n\t\t\t} );\n\n\t\t\tif( fromSlideIsHidden ) fromSlide.style.display = 'none';\n\n\t\t\t// Animate unmatched elements, if enabled\n\t\t\tif( toSlide.dataset.autoAnimateUnmatched !== 'false' && this.Reveal.getConfig().autoAnimateUnmatched === true ) {\n\n\t\t\t\t// Our default timings for unmatched elements\n\t\t\t\tlet defaultUnmatchedDuration = animationOptions.duration * 0.8,\n\t\t\t\t\tdefaultUnmatchedDelay = animationOptions.duration * 0.2;\n\n\t\t\t\tthis.getUnmatchedAutoAnimateElements( toSlide ).forEach( unmatchedElement => {\n\n\t\t\t\t\tlet unmatchedOptions = this.getAutoAnimateOptions( unmatchedElement, animationOptions );\n\t\t\t\t\tlet id = 'unmatched';\n\n\t\t\t\t\t// If there is a duration or delay set specifically for this\n\t\t\t\t\t// element our unmatched elements should adhere to those\n\t\t\t\t\tif( unmatchedOptions.duration !== animationOptions.duration || unmatchedOptions.delay !== animationOptions.delay ) {\n\t\t\t\t\t\tid = 'unmatched-' + autoAnimateCounter++;\n\t\t\t\t\t\tcss.push( `[data-auto-animate=\"running\"] [data-auto-animate-target=\"${id}\"] { transition: opacity ${unmatchedOptions.duration}s ease ${unmatchedOptions.delay}s; }` );\n\t\t\t\t\t}\n\n\t\t\t\t\tunmatchedElement.dataset.autoAnimateTarget = id;\n\n\t\t\t\t}, this );\n\n\t\t\t\t// Our default transition for unmatched elements\n\t\t\t\tcss.push( `[data-auto-animate=\"running\"] [data-auto-animate-target=\"unmatched\"] { transition: opacity ${defaultUnmatchedDuration}s ease ${defaultUnmatchedDelay}s; }` );\n\n\t\t\t}\n\n\t\t\t// Setting the whole chunk of CSS at once is the most\n\t\t\t// efficient way to do this. Using sheet.insertRule\n\t\t\t// is multiple factors slower.\n\t\t\tthis.autoAnimateStyleSheet.innerHTML = css.join( '' );\n\n\t\t\t// Start the animation next cycle\n\t\t\trequestAnimationFrame( () => {\n\t\t\t\tif( this.autoAnimateStyleSheet ) {\n\t\t\t\t\t// This forces our newly injected styles to be applied in Firefox\n\t\t\t\t\tgetComputedStyle( this.autoAnimateStyleSheet ).fontWeight;\n\n\t\t\t\t\ttoSlide.dataset.autoAnimate = 'running';\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\tthis.Reveal.dispatchEvent({\n\t\t\t\ttype: 'autoanimate',\n\t\t\t\tdata: {\n\t\t\t\t\tfromSlide,\n\t\t\t\t\ttoSlide,\n\t\t\t\t\tsheet: this.autoAnimateStyleSheet\n\t\t\t\t}\n\t\t\t});\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Rolls back all changes that we've made to the DOM so\n\t * that as part of animating.\n\t */\n\treset() {\n\n\t\t// Reset slides\n\t\tqueryAll( this.Reveal.getRevealElement(), '[data-auto-animate]:not([data-auto-animate=\"\"])' ).forEach( element => {\n\t\t\telement.dataset.autoAnimate = '';\n\t\t} );\n\n\t\t// Reset elements\n\t\tqueryAll( this.Reveal.getRevealElement(), '[data-auto-animate-target]' ).forEach( element => {\n\t\t\tdelete element.dataset.autoAnimateTarget;\n\t\t} );\n\n\t\t// Remove the animation sheet\n\t\tif( this.autoAnimateStyleSheet && this.autoAnimateStyleSheet.parentNode ) {\n\t\t\tthis.autoAnimateStyleSheet.parentNode.removeChild( this.autoAnimateStyleSheet );\n\t\t\tthis.autoAnimateStyleSheet = null;\n\t\t}\n\n\t}\n\n\t/**\n\t * Creates a FLIP animation where the `to` element starts out\n\t * in the `from` element position and animates to its original\n\t * state.\n\t *\n\t * @param {HTMLElement} from\n\t * @param {HTMLElement} to\n\t * @param {Object} elementOptions Options for this element pair\n\t * @param {Object} animationOptions Options set at the slide level\n\t * @param {String} id Unique ID that we can use to identify this\n\t * auto-animate element in the DOM\n\t */\n\tautoAnimateElements( from, to, elementOptions, animationOptions, id ) {\n\n\t\t// 'from' elements are given a data-auto-animate-target with no value,\n\t\t// 'to' elements are are given a data-auto-animate-target with an ID\n\t\tfrom.dataset.autoAnimateTarget = '';\n\t\tto.dataset.autoAnimateTarget = id;\n\n\t\t// Each element may override any of the auto-animate options\n\t\t// like transition easing, duration and delay via data-attributes\n\t\tlet options = this.getAutoAnimateOptions( to, animationOptions );\n\n\t\t// If we're using a custom element matcher the element options\n\t\t// may contain additional transition overrides\n\t\tif( typeof elementOptions.delay !== 'undefined' ) options.delay = elementOptions.delay;\n\t\tif( typeof elementOptions.duration !== 'undefined' ) options.duration = elementOptions.duration;\n\t\tif( typeof elementOptions.easing !== 'undefined' ) options.easing = elementOptions.easing;\n\n\t\tlet fromProps = this.getAutoAnimatableProperties( 'from', from, elementOptions ),\n\t\t\ttoProps = this.getAutoAnimatableProperties( 'to', to, elementOptions );\n\n\t\t// Maintain fragment visibility for matching elements when\n\t\t// we're navigating forwards, this way the viewer won't need\n\t\t// to step through the same fragments twice\n\t\tif( to.classList.contains( 'fragment' ) ) {\n\n\t\t\t// Don't auto-animate the opacity of fragments to avoid\n\t\t\t// conflicts with fragment animations\n\t\t\tdelete toProps.styles['opacity'];\n\n\t\t\tif( from.classList.contains( 'fragment' ) ) {\n\n\t\t\t\tlet fromFragmentStyle = ( from.className.match( FRAGMENT_STYLE_REGEX ) || [''] )[0];\n\t\t\t\tlet toFragmentStyle = ( to.className.match( FRAGMENT_STYLE_REGEX ) || [''] )[0];\n\n\t\t\t\t// Only skip the fragment if the fragment animation style\n\t\t\t\t// remains unchanged\n\t\t\t\tif( fromFragmentStyle === toFragmentStyle && animationOptions.slideDirection === 'forward' ) {\n\t\t\t\t\tto.classList.add( 'visible', 'disabled' );\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t// If translation and/or scaling are enabled, css transform\n\t\t// the 'to' element so that it matches the position and size\n\t\t// of the 'from' element\n\t\tif( elementOptions.translate !== false || elementOptions.scale !== false ) {\n\n\t\t\tlet presentationScale = this.Reveal.getScale();\n\n\t\t\tlet delta = {\n\t\t\t\tx: ( fromProps.x - toProps.x ) / presentationScale,\n\t\t\t\ty: ( fromProps.y - toProps.y ) / presentationScale,\n\t\t\t\tscaleX: fromProps.width / toProps.width,\n\t\t\t\tscaleY: fromProps.height / toProps.height\n\t\t\t};\n\n\t\t\t// Limit decimal points to avoid 0.0001px blur and stutter\n\t\t\tdelta.x = Math.round( delta.x * 1000 ) / 1000;\n\t\t\tdelta.y = Math.round( delta.y * 1000 ) / 1000;\n\t\t\tdelta.scaleX = Math.round( delta.scaleX * 1000 ) / 1000;\n\t\t\tdelta.scaleX = Math.round( delta.scaleX * 1000 ) / 1000;\n\n\t\t\tlet translate = elementOptions.translate !== false && ( delta.x !== 0 || delta.y !== 0 ),\n\t\t\t\tscale = elementOptions.scale !== false && ( delta.scaleX !== 0 || delta.scaleY !== 0 );\n\n\t\t\t// No need to transform if nothing's changed\n\t\t\tif( translate || scale ) {\n\n\t\t\t\tlet transform = [];\n\n\t\t\t\tif( translate ) transform.push( `translate(${delta.x}px, ${delta.y}px)` );\n\t\t\t\tif( scale ) transform.push( `scale(${delta.scaleX}, ${delta.scaleY})` );\n\n\t\t\t\tfromProps.styles['transform'] = transform.join( ' ' );\n\t\t\t\tfromProps.styles['transform-origin'] = 'top left';\n\n\t\t\t\ttoProps.styles['transform'] = 'none';\n\n\t\t\t}\n\n\t\t}\n\n\t\t// Delete all unchanged 'to' styles\n\t\tfor( let propertyName in toProps.styles ) {\n\t\t\tconst toValue = toProps.styles[propertyName];\n\t\t\tconst fromValue = fromProps.styles[propertyName];\n\n\t\t\tif( toValue === fromValue ) {\n\t\t\t\tdelete toProps.styles[propertyName];\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// If these property values were set via a custom matcher providing\n\t\t\t\t// an explicit 'from' and/or 'to' value, we always inject those values.\n\t\t\t\tif( toValue.explicitValue === true ) {\n\t\t\t\t\ttoProps.styles[propertyName] = toValue.value;\n\t\t\t\t}\n\n\t\t\t\tif( fromValue.explicitValue === true ) {\n\t\t\t\t\tfromProps.styles[propertyName] = fromValue.value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tlet css = '';\n\n\t\tlet toStyleProperties = Object.keys( toProps.styles );\n\n\t\t// Only create animate this element IF at least one style\n\t\t// property has changed\n\t\tif( toStyleProperties.length > 0 ) {\n\n\t\t\t// Instantly move to the 'from' state\n\t\t\tfromProps.styles['transition'] = 'none';\n\n\t\t\t// Animate towards the 'to' state\n\t\t\ttoProps.styles['transition'] = `all ${options.duration}s ${options.easing} ${options.delay}s`;\n\t\t\ttoProps.styles['transition-property'] = toStyleProperties.join( ', ' );\n\t\t\ttoProps.styles['will-change'] = toStyleProperties.join( ', ' );\n\n\t\t\t// Build up our custom CSS. We need to override inline styles\n\t\t\t// so we need to make our styles vErY IMPORTANT!1!!\n\t\t\tlet fromCSS = Object.keys( fromProps.styles ).map( propertyName => {\n\t\t\t\treturn propertyName + ': ' + fromProps.styles[propertyName] + ' !important;';\n\t\t\t} ).join( '' );\n\n\t\t\tlet toCSS = Object.keys( toProps.styles ).map( propertyName => {\n\t\t\t\treturn propertyName + ': ' + toProps.styles[propertyName] + ' !important;';\n\t\t\t} ).join( '' );\n\n\t\t\tcss = \t'[data-auto-animate-target=\"'+ id +'\"] {'+ fromCSS +'}' +\n\t\t\t\t\t'[data-auto-animate=\"running\"] [data-auto-animate-target=\"'+ id +'\"] {'+ toCSS +'}';\n\n\t\t}\n\n\t\treturn css;\n\n\t}\n\n\t/**\n\t * Returns the auto-animate options for the given element.\n\t *\n\t * @param {HTMLElement} element Element to pick up options\n\t * from, either a slide or an animation target\n\t * @param {Object} [inheritedOptions] Optional set of existing\n\t * options\n\t */\n\tgetAutoAnimateOptions( element, inheritedOptions ) {\n\n\t\tlet options = {\n\t\t\teasing: this.Reveal.getConfig().autoAnimateEasing,\n\t\t\tduration: this.Reveal.getConfig().autoAnimateDuration,\n\t\t\tdelay: 0\n\t\t};\n\n\t\toptions = extend( options, inheritedOptions );\n\n\t\t// Inherit options from parent elements\n\t\tif( element.parentNode ) {\n\t\t\tlet autoAnimatedParent = closest( element.parentNode, '[data-auto-animate-target]' );\n\t\t\tif( autoAnimatedParent ) {\n\t\t\t\toptions = this.getAutoAnimateOptions( autoAnimatedParent, options );\n\t\t\t}\n\t\t}\n\n\t\tif( element.dataset.autoAnimateEasing ) {\n\t\t\toptions.easing = element.dataset.autoAnimateEasing;\n\t\t}\n\n\t\tif( element.dataset.autoAnimateDuration ) {\n\t\t\toptions.duration = parseFloat( element.dataset.autoAnimateDuration );\n\t\t}\n\n\t\tif( element.dataset.autoAnimateDelay ) {\n\t\t\toptions.delay = parseFloat( element.dataset.autoAnimateDelay );\n\t\t}\n\n\t\treturn options;\n\n\t}\n\n\t/**\n\t * Returns an object containing all of the properties\n\t * that can be auto-animated for the given element and\n\t * their current computed values.\n\t *\n\t * @param {String} direction 'from' or 'to'\n\t */\n\tgetAutoAnimatableProperties( direction, element, elementOptions ) {\n\n\t\tlet config = this.Reveal.getConfig();\n\n\t\tlet properties = { styles: [] };\n\n\t\t// Position and size\n\t\tif( elementOptions.translate !== false || elementOptions.scale !== false ) {\n\t\t\tlet bounds;\n\n\t\t\t// Custom auto-animate may optionally return a custom tailored\n\t\t\t// measurement function\n\t\t\tif( typeof elementOptions.measure === 'function' ) {\n\t\t\t\tbounds = elementOptions.measure( element );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif( config.center ) {\n\t\t\t\t\t// More precise, but breaks when used in combination\n\t\t\t\t\t// with zoom for scaling the deck ¯\\_(ツ)_/¯\n\t\t\t\t\tbounds = element.getBoundingClientRect();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tlet scale = this.Reveal.getScale();\n\t\t\t\t\tbounds = {\n\t\t\t\t\t\tx: element.offsetLeft * scale,\n\t\t\t\t\t\ty: element.offsetTop * scale,\n\t\t\t\t\t\twidth: element.offsetWidth * scale,\n\t\t\t\t\t\theight: element.offsetHeight * scale\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tproperties.x = bounds.x;\n\t\t\tproperties.y = bounds.y;\n\t\t\tproperties.width = bounds.width;\n\t\t\tproperties.height = bounds.height;\n\t\t}\n\n\t\tconst computedStyles = getComputedStyle( element );\n\n\t\t// CSS styles\n\t\t( elementOptions.styles || config.autoAnimateStyles ).forEach( style => {\n\t\t\tlet value;\n\n\t\t\t// `style` is either the property name directly, or an object\n\t\t\t// definition of a style property\n\t\t\tif( typeof style === 'string' ) style = { property: style };\n\n\t\t\tif( typeof style.from !== 'undefined' && direction === 'from' ) {\n\t\t\t\tvalue = { value: style.from, explicitValue: true };\n\t\t\t}\n\t\t\telse if( typeof style.to !== 'undefined' && direction === 'to' ) {\n\t\t\t\tvalue = { value: style.to, explicitValue: true };\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Use a unitless value for line-height so that it inherits properly\n\t\t\t\tif( style.property === 'line-height' ) {\n\t\t\t\t\tvalue = parseFloat( computedStyles['line-height'] ) / parseFloat( computedStyles['font-size'] );\n\t\t\t\t}\n\n\t\t\t\tif( isNaN(value) ) {\n\t\t\t\t\tvalue = computedStyles[style.property];\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif( value !== '' ) {\n\t\t\t\tproperties.styles[style.property] = value;\n\t\t\t}\n\t\t} );\n\n\t\treturn properties;\n\n\t}\n\n\t/**\n\t * Get a list of all element pairs that we can animate\n\t * between the given slides.\n\t *\n\t * @param {HTMLElement} fromSlide\n\t * @param {HTMLElement} toSlide\n\t *\n\t * @return {Array} Each value is an array where [0] is\n\t * the element we're animating from and [1] is the\n\t * element we're animating to\n\t */\n\tgetAutoAnimatableElements( fromSlide, toSlide ) {\n\n\t\tlet matcher = typeof this.Reveal.getConfig().autoAnimateMatcher === 'function' ? this.Reveal.getConfig().autoAnimateMatcher : this.getAutoAnimatePairs;\n\n\t\tlet pairs = matcher.call( this, fromSlide, toSlide );\n\n\t\tlet reserved = [];\n\n\t\t// Remove duplicate pairs\n\t\treturn pairs.filter( ( pair, index ) => {\n\t\t\tif( reserved.indexOf( pair.to ) === -1 ) {\n\t\t\t\treserved.push( pair.to );\n\t\t\t\treturn true;\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Identifies matching elements between slides.\n\t *\n\t * You can specify a custom matcher function by using\n\t * the `autoAnimateMatcher` config option.\n\t */\n\tgetAutoAnimatePairs( fromSlide, toSlide ) {\n\n\t\tlet pairs = [];\n\n\t\tconst codeNodes = 'pre';\n\t\tconst textNodes = 'h1, h2, h3, h4, h5, h6, p, li';\n\t\tconst mediaNodes = 'img, video, iframe';\n\n\t\t// Explicit matches via data-id\n\t\tthis.findAutoAnimateMatches( pairs, fromSlide, toSlide, '[data-id]', node => {\n\t\t\treturn node.nodeName + ':::' + node.getAttribute( 'data-id' );\n\t\t} );\n\n\t\t// Text\n\t\tthis.findAutoAnimateMatches( pairs, fromSlide, toSlide, textNodes, node => {\n\t\t\treturn node.nodeName + ':::' + node.innerText;\n\t\t} );\n\n\t\t// Media\n\t\tthis.findAutoAnimateMatches( pairs, fromSlide, toSlide, mediaNodes, node => {\n\t\t\treturn node.nodeName + ':::' + ( node.getAttribute( 'src' ) || node.getAttribute( 'data-src' ) );\n\t\t} );\n\n\t\t// Code\n\t\tthis.findAutoAnimateMatches( pairs, fromSlide, toSlide, codeNodes, node => {\n\t\t\treturn node.nodeName + ':::' + node.innerText;\n\t\t} );\n\n\t\tpairs.forEach( pair => {\n\t\t\t// Disable scale transformations on text nodes, we transition\n\t\t\t// each individual text property instead\n\t\t\tif( matches( pair.from, textNodes ) ) {\n\t\t\t\tpair.options = { scale: false };\n\t\t\t}\n\t\t\t// Animate individual lines of code\n\t\t\telse if( matches( pair.from, codeNodes ) ) {\n\n\t\t\t\t// Transition the code block's width and height instead of scaling\n\t\t\t\t// to prevent its content from being squished\n\t\t\t\tpair.options = { scale: false, styles: [ 'width', 'height' ] };\n\n\t\t\t\t// Lines of code\n\t\t\t\tthis.findAutoAnimateMatches( pairs, pair.from, pair.to, '.hljs .hljs-ln-code', node => {\n\t\t\t\t\treturn node.textContent;\n\t\t\t\t}, {\n\t\t\t\t\tscale: false,\n\t\t\t\t\tstyles: [],\n\t\t\t\t\tmeasure: this.getLocalBoundingBox.bind( this )\n\t\t\t\t} );\n\n\t\t\t\t// Line numbers\n\t\t\t\tthis.findAutoAnimateMatches( pairs, pair.from, pair.to, '.hljs .hljs-ln-numbers[data-line-number]', node => {\n\t\t\t\t\treturn node.getAttribute( 'data-line-number' );\n\t\t\t\t}, {\n\t\t\t\t\tscale: false,\n\t\t\t\t\tstyles: [ 'width' ],\n\t\t\t\t\tmeasure: this.getLocalBoundingBox.bind( this )\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t}, this );\n\n\t\treturn pairs;\n\n\t}\n\n\t/**\n\t * Helper method which returns a bounding box based on\n\t * the given elements offset coordinates.\n\t *\n\t * @param {HTMLElement} element\n\t * @return {Object} x, y, width, height\n\t */\n\tgetLocalBoundingBox( element ) {\n\n\t\tconst presentationScale = this.Reveal.getScale();\n\n\t\treturn {\n\t\t\tx: Math.round( ( element.offsetLeft * presentationScale ) * 100 ) / 100,\n\t\t\ty: Math.round( ( element.offsetTop * presentationScale ) * 100 ) / 100,\n\t\t\twidth: Math.round( ( element.offsetWidth * presentationScale ) * 100 ) / 100,\n\t\t\theight: Math.round( ( element.offsetHeight * presentationScale ) * 100 ) / 100\n\t\t};\n\n\t}\n\n\t/**\n\t * Finds matching elements between two slides.\n\t *\n\t * @param {Array} pairs \tList of pairs to push matches to\n\t * @param {HTMLElement} fromScope Scope within the from element exists\n\t * @param {HTMLElement} toScope Scope within the to element exists\n\t * @param {String} selector CSS selector of the element to match\n\t * @param {Function} serializer A function that accepts an element and returns\n\t * a stringified ID based on its contents\n\t * @param {Object} animationOptions Optional config options for this pair\n\t */\n\tfindAutoAnimateMatches( pairs, fromScope, toScope, selector, serializer, animationOptions ) {\n\n\t\tlet fromMatches = {};\n\t\tlet toMatches = {};\n\n\t\t[].slice.call( fromScope.querySelectorAll( selector ) ).forEach( ( element, i ) => {\n\t\t\tconst key = serializer( element );\n\t\t\tif( typeof key === 'string' && key.length ) {\n\t\t\t\tfromMatches[key] = fromMatches[key] || [];\n\t\t\t\tfromMatches[key].push( element );\n\t\t\t}\n\t\t} );\n\n\t\t[].slice.call( toScope.querySelectorAll( selector ) ).forEach( ( element, i ) => {\n\t\t\tconst key = serializer( element );\n\t\t\ttoMatches[key] = toMatches[key] || [];\n\t\t\ttoMatches[key].push( element );\n\n\t\t\tlet fromElement;\n\n\t\t\t// Retrieve the 'from' element\n\t\t\tif( fromMatches[key] ) {\n\t\t\t\tconst primaryIndex = toMatches[key].length - 1;\n\t\t\t\tconst secondaryIndex = fromMatches[key].length - 1;\n\n\t\t\t\t// If there are multiple identical from elements, retrieve\n\t\t\t\t// the one at the same index as our to-element.\n\t\t\t\tif( fromMatches[key][ primaryIndex ] ) {\n\t\t\t\t\tfromElement = fromMatches[key][ primaryIndex ];\n\t\t\t\t\tfromMatches[key][ primaryIndex ] = null;\n\t\t\t\t}\n\t\t\t\t// If there are no matching from-elements at the same index,\n\t\t\t\t// use the last one.\n\t\t\t\telse if( fromMatches[key][ secondaryIndex ] ) {\n\t\t\t\t\tfromElement = fromMatches[key][ secondaryIndex ];\n\t\t\t\t\tfromMatches[key][ secondaryIndex ] = null;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// If we've got a matching pair, push it to the list of pairs\n\t\t\tif( fromElement ) {\n\t\t\t\tpairs.push({\n\t\t\t\t\tfrom: fromElement,\n\t\t\t\t\tto: element,\n\t\t\t\t\toptions: animationOptions\n\t\t\t\t});\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Returns a all elements within the given scope that should\n\t * be considered unmatched in an auto-animate transition. If\n\t * fading of unmatched elements is turned on, these elements\n\t * will fade when going between auto-animate slides.\n\t *\n\t * Note that parents of auto-animate targets are NOT considered\n\t * unmatched since fading them would break the auto-animation.\n\t *\n\t * @param {HTMLElement} rootElement\n\t * @return {Array}\n\t */\n\tgetUnmatchedAutoAnimateElements( rootElement ) {\n\n\t\treturn [].slice.call( rootElement.children ).reduce( ( result, element ) => {\n\n\t\t\tconst containsAnimatedElements = element.querySelector( '[data-auto-animate-target]' );\n\n\t\t\t// The element is unmatched if\n\t\t\t// - It is not an auto-animate target\n\t\t\t// - It does not contain any auto-animate targets\n\t\t\tif( !element.hasAttribute( 'data-auto-animate-target' ) && !containsAnimatedElements ) {\n\t\t\t\tresult.push( element );\n\t\t\t}\n\n\t\t\tif( element.querySelector( '[data-auto-animate-target]' ) ) {\n\t\t\t\tresult = result.concat( this.getUnmatchedAutoAnimateElements( element ) );\n\t\t\t}\n\n\t\t\treturn result;\n\n\t\t}, [] );\n\n\t}\n\n}\n","import { HORIZONTAL_SLIDES_SELECTOR } from '../utils/constants.js'\nimport { queryAll } from '../utils/util.js'\n\nconst HIDE_SCROLLBAR_TIMEOUT = 500;\nconst MAX_PROGRESS_SPACING = 4;\nconst MIN_PROGRESS_SEGMENT_HEIGHT = 6;\nconst MIN_PLAYHEAD_HEIGHT = 8;\n\n/**\n * The scroll view lets you read a reveal.js presentation\n * as a linear scrollable page.\n */\nexport default class ScrollView {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t\tthis.active = false;\n\t\tthis.activatedCallbacks = [];\n\n\t\tthis.onScroll = this.onScroll.bind( this );\n\n\t}\n\n\t/**\n\t * Activates the scroll view. This rearranges the presentation DOM\n\t * by—among other things—wrapping each slide in a page element.\n\t */\n\tactivate() {\n\n\t\tif( this.active ) return;\n\n\t\tconst stateBeforeActivation = this.Reveal.getState();\n\n\t\tthis.active = true;\n\n\t\t// Store the full presentation HTML so that we can restore it\n\t\t// when/if the scroll view is deactivated\n\t\tthis.slideHTMLBeforeActivation = this.Reveal.getSlidesElement().innerHTML;\n\n\t\tconst horizontalSlides = queryAll( this.Reveal.getRevealElement(), HORIZONTAL_SLIDES_SELECTOR );\n\n\t\tthis.viewportElement.classList.add( 'loading-scroll-mode', 'reveal-scroll' );\n\n\t\tlet presentationBackground;\n\n\t\tconst viewportStyles = window.getComputedStyle( this.viewportElement );\n\t\tif( viewportStyles && viewportStyles.background ) {\n\t\t\tpresentationBackground = viewportStyles.background;\n\t\t}\n\n\t\tconst pageElements = [];\n\t\tconst pageContainer = horizontalSlides[0].parentNode;\n\n\t\tlet previousSlide;\n\n\t\t// Creates a new page element and appends the given slide/bg\n\t\t// to it.\n\t\tconst createPageElement = ( slide, h, v ) => {\n\n\t\t\tlet contentContainer;\n\n\t\t\t// If this slide is part of an auto-animation sequence, we\n\t\t\t// group it under the same page element as the previous slide\n\t\t\tif( previousSlide && this.Reveal.shouldAutoAnimateBetween( previousSlide, slide ) ) {\n\t\t\t\tcontentContainer = document.createElement( 'div' );\n\t\t\t\tcontentContainer.className = 'scroll-page-content scroll-auto-animate-page';\n\t\t\t\tcontentContainer.style.display = 'none';\n\t\t\t\tpreviousSlide.closest( '.scroll-page-content' ).parentNode.appendChild( contentContainer );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Wrap the slide in a page element and hide its overflow\n\t\t\t\t// so that no page ever flows onto another\n\t\t\t\tconst page = document.createElement( 'div' );\n\t\t\t\tpage.className = 'scroll-page';\n\t\t\t\tpageElements.push( page );\n\n\t\t\t\t// Copy the presentation-wide background to each page\n\t\t\t\tif( presentationBackground ) {\n\t\t\t\t\tpage.style.background = presentationBackground;\n\t\t\t\t}\n\n\t\t\t\tconst stickyContainer = document.createElement( 'div' );\n\t\t\t\tstickyContainer.className = 'scroll-page-sticky';\n\t\t\t\tpage.appendChild( stickyContainer );\n\n\t\t\t\tcontentContainer = document.createElement( 'div' );\n\t\t\t\tcontentContainer.className = 'scroll-page-content';\n\t\t\t\tstickyContainer.appendChild( contentContainer );\n\t\t\t}\n\n\t\t\tcontentContainer.appendChild( slide );\n\n\t\t\tslide.classList.remove( 'past', 'future' );\n\t\t\tslide.setAttribute( 'data-index-h', h );\n\t\t\tslide.setAttribute( 'data-index-v', v );\n\n\t\t\tif( slide.slideBackgroundElement ) {\n\t\t\t\tslide.slideBackgroundElement.remove( 'past', 'future' );\n\t\t\t\tcontentContainer.insertBefore( slide.slideBackgroundElement, slide );\n\t\t\t}\n\n\t\t\tpreviousSlide = slide;\n\n\t\t}\n\n\t\t// Slide and slide background layout\n\t\thorizontalSlides.forEach( ( horizontalSlide, h ) => {\n\n\t\t\tif( this.Reveal.isVerticalStack( horizontalSlide ) ) {\n\t\t\t\thorizontalSlide.querySelectorAll( 'section' ).forEach( ( verticalSlide, v ) => {\n\t\t\t\t\tcreatePageElement( verticalSlide, h, v );\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tcreatePageElement( horizontalSlide, h, 0 );\n\t\t\t}\n\n\t\t}, this );\n\n\t\tthis.createProgressBar();\n\n\t\t// Remove leftover stacks\n\t\tqueryAll( this.Reveal.getRevealElement(), '.stack' ).forEach( stack => stack.remove() );\n\n\t\t// Add our newly created pages to the DOM\n\t\tpageElements.forEach( page => pageContainer.appendChild( page ) );\n\n\t\t// Re-run JS-based content layout after the slide is added to page DOM\n\t\tthis.Reveal.slideContent.layout( this.Reveal.getSlidesElement() );\n\n\t\tthis.Reveal.layout();\n\t\tthis.Reveal.setState( stateBeforeActivation );\n\n\t\tthis.activatedCallbacks.forEach( callback => callback() );\n\t\tthis.activatedCallbacks = [];\n\n\t\tthis.restoreScrollPosition();\n\n\t\tthis.viewportElement.classList.remove( 'loading-scroll-mode' );\n\t\tthis.viewportElement.addEventListener( 'scroll', this.onScroll, { passive: true } );\n\n\t}\n\n\t/**\n\t * Deactivates the scroll view and restores the standard slide-based\n\t * presentation.\n\t */\n\tdeactivate() {\n\n\t\tif( !this.active ) return;\n\n\t\tconst stateBeforeDeactivation = this.Reveal.getState();\n\n\t\tthis.active = false;\n\n\t\tthis.viewportElement.removeEventListener( 'scroll', this.onScroll );\n\t\tthis.viewportElement.classList.remove( 'reveal-scroll' );\n\n\t\tthis.removeProgressBar();\n\n\t\tthis.Reveal.getSlidesElement().innerHTML = this.slideHTMLBeforeActivation;\n\t\tthis.Reveal.sync();\n\t\tthis.Reveal.setState( stateBeforeDeactivation );\n\n\t\tthis.slideHTMLBeforeActivation = null;\n\n\t}\n\n\ttoggle( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? this.activate() : this.deactivate();\n\t\t}\n\t\telse {\n\t\t\tthis.isActive() ? this.deactivate() : this.activate();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if the scroll view is currently active.\n\t */\n\tisActive() {\n\n\t\treturn this.active;\n\n\t}\n\n\t/**\n\t * Renders the progress bar component.\n\t */\n\tcreateProgressBar() {\n\n\t\tthis.progressBar = document.createElement( 'div' );\n\t\tthis.progressBar.className = 'scrollbar';\n\n\t\tthis.progressBarInner = document.createElement( 'div' );\n\t\tthis.progressBarInner.className = 'scrollbar-inner';\n\t\tthis.progressBar.appendChild( this.progressBarInner );\n\n\t\tthis.progressBarPlayhead = document.createElement( 'div' );\n\t\tthis.progressBarPlayhead.className = 'scrollbar-playhead';\n\t\tthis.progressBarInner.appendChild( this.progressBarPlayhead );\n\n\t\tthis.viewportElement.insertBefore( this.progressBar, this.viewportElement.firstChild );\n\n\t\tconst handleDocumentMouseMove\t= ( event ) => {\n\n\t\t\tlet progress = ( event.clientY - this.progressBarInner.getBoundingClientRect().top ) / this.progressBarHeight;\n\t\t\tprogress = Math.max( Math.min( progress, 1 ), 0 );\n\n\t\t\tthis.viewportElement.scrollTop = progress * ( this.viewportElement.scrollHeight - this.viewportElement.offsetHeight );\n\n\t\t};\n\n\t\tconst handleDocumentMouseUp = ( event ) => {\n\n\t\t\tthis.draggingProgressBar = false;\n\t\t\tthis.showProgressBar();\n\n\t\t\tdocument.removeEventListener( 'mousemove', handleDocumentMouseMove );\n\t\t\tdocument.removeEventListener( 'mouseup', handleDocumentMouseUp );\n\n\t\t};\n\n\t\tconst handleMouseDown = ( event ) => {\n\n\t\t\tevent.preventDefault();\n\n\t\t\tthis.draggingProgressBar = true;\n\n\t\t\tdocument.addEventListener( 'mousemove', handleDocumentMouseMove );\n\t\t\tdocument.addEventListener( 'mouseup', handleDocumentMouseUp );\n\n\t\t\thandleDocumentMouseMove( event );\n\n\t\t};\n\n\t\tthis.progressBarInner.addEventListener( 'mousedown', handleMouseDown );\n\n\t}\n\n\tremoveProgressBar() {\n\n\t\tif( this.progressBar ) {\n\t\t\tthis.progressBar.remove();\n\t\t\tthis.progressBar = null;\n\t\t}\n\n\t}\n\n\tlayout() {\n\n\t\tif( this.isActive() ) {\n\t\t\tthis.syncPages();\n\t\t\tthis.syncScrollPosition();\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates our pages to match the latest configuration and\n\t * presentation size.\n\t */\n\tsyncPages() {\n\n\t\tconst config = this.Reveal.getConfig();\n\n\t\tconst slideSize = this.Reveal.getComputedSlideSize( window.innerWidth, window.innerHeight );\n\t\tconst scale = this.Reveal.getScale();\n\t\tconst useCompactLayout = config.scrollLayout === 'compact';\n\n\t\tconst viewportHeight = this.viewportElement.offsetHeight;\n\t\tconst compactHeight = slideSize.height * scale;\n\t\tconst pageHeight = useCompactLayout ? compactHeight : viewportHeight;\n\n\t\t// The height that needs to be scrolled between scroll triggers\n\t\tconst scrollTriggerHeight = useCompactLayout ? compactHeight : viewportHeight;\n\n\t\tthis.viewportElement.style.setProperty( '--page-height', pageHeight + 'px' );\n\t\tthis.viewportElement.style.scrollSnapType = typeof config.scrollSnap === 'string' ? `y ${config.scrollSnap}` : '';\n\n\t\t// This will hold all scroll triggers used to show/hide slides\n\t\tthis.slideTriggers = [];\n\n\t\tconst pageElements = Array.from( this.Reveal.getRevealElement().querySelectorAll( '.scroll-page' ) );\n\n\t\tthis.pages = pageElements.map( pageElement => {\n\t\t\tconst page = this.createPage({\n\t\t\t\tpageElement,\n\t\t\t\tslideElement: pageElement.querySelector( 'section' ),\n\t\t\t\tstickyElement: pageElement.querySelector( '.scroll-page-sticky' ),\n\t\t\t\tcontentElement: pageElement.querySelector( '.scroll-page-content' ),\n\t\t\t\tbackgroundElement: pageElement.querySelector( '.slide-background' ),\n\t\t\t\tautoAnimateElements: pageElement.querySelectorAll( '.scroll-auto-animate-page' ),\n\t\t\t\tautoAnimatePages: []\n\t\t\t});\n\n\t\t\tpage.pageElement.style.setProperty( '--slide-height', config.center === true ? 'auto' : slideSize.height + 'px' );\n\n\t\t\tthis.slideTriggers.push({\n\t\t\t\tpage: page,\n\t\t\t\tactivate: () => this.activatePage( page ),\n\t\t\t\tdeactivate: () => this.deactivatePage( page )\n\t\t\t});\n\n\t\t\t// Create scroll triggers that show/hide fragments\n\t\t\tthis.createFragmentTriggersForPage( page );\n\n\t\t\t// Create scroll triggers for triggering auto-animate steps\n\t\t\tif( page.autoAnimateElements.length > 0 ) {\n\t\t\t\tthis.createAutoAnimateTriggersForPage( page );\n\t\t\t}\n\n\t\t\tlet totalScrollTriggerCount = Math.max( page.scrollTriggers.length - 1, 0 );\n\n\t\t\t// Each auto-animate step may include its own scroll triggers\n\t\t\t// for fragments, ensure we count those as well\n\t\t\ttotalScrollTriggerCount += page.autoAnimatePages.reduce( ( total, page ) => {\n\t\t\t\treturn total + Math.max( page.scrollTriggers.length - 1, 0 );\n\t\t\t}, page.autoAnimatePages.length );\n\n\t\t\t// Clean up from previous renders\n\t\t\tpage.pageElement.querySelectorAll( '.scroll-snap-point' ).forEach( el => el.remove() );\n\n\t\t\t// Create snap points for all scroll triggers\n\t\t\t// - Can't be absolute in FF\n\t\t\t// - Can't be 0-height in Safari\n\t\t\t// - Can't use snap-align on parent in Safari because then\n\t\t\t// inner triggers won't work\n\t\t\tfor( let i = 0; i < totalScrollTriggerCount + 1; i++ ) {\n\t\t\t\tconst triggerStick = document.createElement( 'div' );\n\t\t\t\ttriggerStick.className = 'scroll-snap-point';\n\t\t\t\ttriggerStick.style.height = scrollTriggerHeight + 'px';\n\t\t\t\ttriggerStick.style.scrollSnapAlign = useCompactLayout ? 'center' : 'start';\n\t\t\t\tpage.pageElement.appendChild( triggerStick );\n\n\t\t\t\tif( i === 0 ) {\n\t\t\t\t\ttriggerStick.style.marginTop = -scrollTriggerHeight + 'px';\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// In the compact layout, only slides with scroll triggers cover the\n\t\t\t// full viewport height. This helps avoid empty gaps before or after\n\t\t\t// a sticky slide.\n\t\t\tif( useCompactLayout && page.scrollTriggers.length > 0 ) {\n\t\t\t\tpage.pageHeight = viewportHeight;\n\t\t\t\tpage.pageElement.style.setProperty( '--page-height', viewportHeight + 'px' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tpage.pageHeight = pageHeight;\n\t\t\t\tpage.pageElement.style.removeProperty( '--page-height' );\n\t\t\t}\n\n\t\t\t// Add scroll padding based on how many scroll triggers we have\n\t\t\tpage.scrollPadding = scrollTriggerHeight * totalScrollTriggerCount;\n\n\t\t\t// The total height including scrollable space\n\t\t\tpage.totalHeight = page.pageHeight + page.scrollPadding;\n\n\t\t\t// This is used to pad the height of our page in CSS\n\t\t\tpage.pageElement.style.setProperty( '--page-scroll-padding', page.scrollPadding + 'px' );\n\n\t\t\t// If this is a sticky page, stick it to the vertical center\n\t\t\tif( totalScrollTriggerCount > 0 ) {\n\t\t\t\tpage.stickyElement.style.position = 'sticky';\n\t\t\t\tpage.stickyElement.style.top = Math.max( ( viewportHeight - page.pageHeight ) / 2, 0 ) + 'px';\n\t\t\t}\n\t\t\telse {\n\t\t\t\tpage.stickyElement.style.position = 'relative';\n\t\t\t\tpage.pageElement.style.scrollSnapAlign = page.pageHeight < viewportHeight ? 'center' : 'start';\n\t\t\t}\n\n\t\t\treturn page;\n\t\t} );\n\n\t\tthis.setTriggerRanges();\n\n\t\t/*\n\t\tconsole.log(this.slideTriggers.map( t => {\n\t\t\treturn {\n\t\t\t\trange: `${t.range[0].toFixed(2)}-${t.range[1].toFixed(2)}`,\n\t\t\t\ttriggers: t.page.scrollTriggers.map( t => {\n\t\t\t\t\treturn `${t.range[0].toFixed(2)}-${t.range[1].toFixed(2)}`\n\t\t\t\t}).join( ', ' ),\n\t\t\t}\n\t\t}))\n\t\t*/\n\n\t\tthis.viewportElement.setAttribute( 'data-scrollbar', config.scrollProgress );\n\n\t\tif( config.scrollProgress && this.totalScrollTriggerCount > 1 ) {\n\t\t\t// Create the progress bar if it doesn't already exist\n\t\t\tif( !this.progressBar ) this.createProgressBar();\n\n\t\t\tthis.syncProgressBar();\n\t\t}\n\t\telse {\n\t\t\tthis.removeProgressBar();\n\t\t}\n\n\t}\n\n\t/**\n\t * Calculates and sets the scroll range for all of our scroll\n\t * triggers.\n\t */\n\tsetTriggerRanges() {\n\n\t\t// Calculate the total number of scroll triggers\n\t\tthis.totalScrollTriggerCount = this.slideTriggers.reduce( ( total, trigger ) => {\n\t\t\treturn total + Math.max( trigger.page.scrollTriggers.length, 1 );\n\t\t}, 0 );\n\n\t\tlet rangeStart = 0;\n\n\t\t// Calculate the scroll range of each scroll trigger on a scale\n\t\t// of 0-1\n\t\tthis.slideTriggers.forEach( ( trigger, i ) => {\n\t\t\ttrigger.range = [\n\t\t\t\trangeStart,\n\t\t\t\trangeStart + Math.max( trigger.page.scrollTriggers.length, 1 ) / this.totalScrollTriggerCount\n\t\t\t];\n\n\t\t\tconst scrollTriggerSegmentSize = ( trigger.range[1] - trigger.range[0] ) / trigger.page.scrollTriggers.length;\n\n\t\t\t// Set the range for each inner scroll trigger\n\t\t\ttrigger.page.scrollTriggers.forEach( ( scrollTrigger, i ) => {\n\t\t\t\tscrollTrigger.range = [\n\t\t\t\t\trangeStart + i * scrollTriggerSegmentSize,\n\t\t\t\t\trangeStart + ( i + 1 ) * scrollTriggerSegmentSize\n\t\t\t\t];\n\t\t\t} );\n\n\t\t\trangeStart = trigger.range[1];\n\t\t} );\n\n\t}\n\n\t/**\n\t * Creates one scroll trigger for each fragments in the given page.\n\t *\n\t * @param {*} page\n\t */\n\tcreateFragmentTriggersForPage( page, slideElement ) {\n\n\t\tslideElement = slideElement || page.slideElement;\n\n\t\t// Each fragment 'group' is an array containing one or more\n\t\t// fragments. Multiple fragments that appear at the same time\n\t\t// are part of the same group.\n\t\tconst fragmentGroups = this.Reveal.fragments.sort( slideElement.querySelectorAll( '.fragment' ), true );\n\n\t\t// Create scroll triggers that show/hide fragments\n\t\tif( fragmentGroups.length ) {\n\t\t\tpage.fragments = this.Reveal.fragments.sort( slideElement.querySelectorAll( '.fragment:not(.disabled)' ) );\n\t\t\tpage.scrollTriggers.push(\n\t\t\t\t// Trigger for the initial state with no fragments visible\n\t\t\t\t{\n\t\t\t\t\tactivate: () => {\n\t\t\t\t\t\tthis.Reveal.fragments.update( -1, page.fragments, slideElement );\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\t// Triggers for each fragment group\n\t\t\t\t...fragmentGroups.map( ( fragments, i ) => ({\n\t\t\t\t\t\tactivate: () => {\n\t\t\t\t\t\t\tthis.Reveal.fragments.update( i, page.fragments, slideElement );\n\t\t\t\t\t\t}\n\t\t\t\t\t})\n\t\t\t\t)\n\t\t\t);\n\t\t}\n\n\n\t\treturn page.scrollTriggers.length;\n\n\t}\n\n\t/**\n\t * Creates scroll triggers for the auto-animate steps in the\n\t * given page.\n\t *\n\t * @param {*} page\n\t */\n\tcreateAutoAnimateTriggersForPage( page ) {\n\n\t\tif( page.autoAnimateElements.length > 0 ) {\n\n\t\t\t// Triggers for each subsequent auto-animate slide\n\t\t\tthis.slideTriggers.push( ...Array.from( page.autoAnimateElements ).map( ( autoAnimateElement, i ) => {\n\t\t\t\tlet autoAnimatePage = this.createPage({\n\t\t\t\t\tslideElement: autoAnimateElement.querySelector( 'section' ),\n\t\t\t\t\tcontentElement: autoAnimateElement,\n\t\t\t\t\tbackgroundElement: autoAnimateElement.querySelector( '.slide-background' )\n\t\t\t\t});\n\n\t\t\t\t// Create fragment scroll triggers for the auto-animate slide\n\t\t\t\tthis.createFragmentTriggersForPage( autoAnimatePage, autoAnimatePage.slideElement );\n\n\t\t\t\tpage.autoAnimatePages.push( autoAnimatePage );\n\n\t\t\t\t// Return our slide trigger\n\t\t\t\treturn {\n\t\t\t\t\tpage: autoAnimatePage,\n\t\t\t\t\tactivate: () => this.activatePage( autoAnimatePage ),\n\t\t\t\t\tdeactivate: () => this.deactivatePage( autoAnimatePage )\n\t\t\t\t};\n\t\t\t}));\n\t\t}\n\n\t}\n\n\t/**\n\t * Helper method for creating a page definition and adding\n\t * required fields. A \"page\" is a slide or auto-animate step.\n\t */\n\tcreatePage( page ) {\n\n\t\tpage.scrollTriggers = [];\n\t\tpage.indexh = parseInt( page.slideElement.getAttribute( 'data-index-h' ), 10 );\n\t\tpage.indexv = parseInt( page.slideElement.getAttribute( 'data-index-v' ), 10 );\n\n\t\treturn page;\n\n\t}\n\n\t/**\n\t * Rerenders progress bar segments so that they match the current\n\t * reveal.js config and size.\n\t */\n\tsyncProgressBar() {\n\n\t\tthis.progressBarInner.querySelectorAll( '.scrollbar-slide' ).forEach( slide => slide.remove() );\n\n\t\tconst scrollHeight = this.viewportElement.scrollHeight;\n\t\tconst viewportHeight = this.viewportElement.offsetHeight;\n\t\tconst viewportHeightFactor = viewportHeight / scrollHeight;\n\n\t\tthis.progressBarHeight = this.progressBarInner.offsetHeight;\n\t\tthis.playheadHeight = Math.max( viewportHeightFactor * this.progressBarHeight, MIN_PLAYHEAD_HEIGHT );\n\t\tthis.progressBarScrollableHeight = this.progressBarHeight - this.playheadHeight;\n\n\t\tconst progressSegmentHeight = viewportHeight / scrollHeight * this.progressBarHeight;\n\t\tconst spacing = Math.min( progressSegmentHeight / 8, MAX_PROGRESS_SPACING );\n\n\t\tthis.progressBarPlayhead.style.height = this.playheadHeight - spacing + 'px';\n\n\t\t// Don't show individual segments if they're too small\n\t\tif( progressSegmentHeight > MIN_PROGRESS_SEGMENT_HEIGHT ) {\n\n\t\t\tthis.slideTriggers.forEach( slideTrigger => {\n\n\t\t\t\tconst { page } = slideTrigger;\n\n\t\t\t\t// Visual representation of a slide\n\t\t\t\tpage.progressBarSlide = document.createElement( 'div' );\n\t\t\t\tpage.progressBarSlide.className = 'scrollbar-slide';\n\t\t\t\tpage.progressBarSlide.style.top = slideTrigger.range[0] * this.progressBarHeight + 'px';\n\t\t\t\tpage.progressBarSlide.style.height = ( slideTrigger.range[1] - slideTrigger.range[0] ) * this.progressBarHeight - spacing + 'px';\n\t\t\t\tpage.progressBarSlide.classList.toggle( 'has-triggers', page.scrollTriggers.length > 0 );\n\t\t\t\tthis.progressBarInner.appendChild( page.progressBarSlide );\n\n\t\t\t\t// Visual representations of each scroll trigger\n\t\t\t\tpage.scrollTriggerElements = page.scrollTriggers.map( ( trigger, i ) => {\n\n\t\t\t\t\tconst triggerElement = document.createElement( 'div' );\n\t\t\t\t\ttriggerElement.className = 'scrollbar-trigger';\n\t\t\t\t\ttriggerElement.style.top = ( trigger.range[0] - slideTrigger.range[0] ) * this.progressBarHeight + 'px';\n\t\t\t\t\ttriggerElement.style.height = ( trigger.range[1] - trigger.range[0] ) * this.progressBarHeight - spacing + 'px';\n\t\t\t\t\tpage.progressBarSlide.appendChild( triggerElement );\n\n\t\t\t\t\tif( i === 0 ) triggerElement.style.display = 'none';\n\n\t\t\t\t\treturn triggerElement;\n\n\t\t\t\t} );\n\n\t\t\t} );\n\n\t\t}\n\t\telse {\n\n\t\t\tthis.pages.forEach( page => page.progressBarSlide = null );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Reads the current scroll position and updates our active\n\t * trigger states accordingly.\n\t */\n\tsyncScrollPosition() {\n\n\t\tconst viewportHeight = this.viewportElement.offsetHeight;\n\t\tconst viewportHeightFactor = viewportHeight / this.viewportElement.scrollHeight;\n\n\t\tconst scrollTop = this.viewportElement.scrollTop;\n\t\tconst scrollHeight = this.viewportElement.scrollHeight - viewportHeight\n\t\tconst scrollProgress = Math.max( Math.min( scrollTop / scrollHeight, 1 ), 0 );\n\t\tconst scrollProgressMid = Math.max( Math.min( ( scrollTop + viewportHeight / 2 ) / this.viewportElement.scrollHeight, 1 ), 0 );\n\n\t\tlet activePage;\n\n\t\tthis.slideTriggers.forEach( ( trigger ) => {\n\t\t\tconst { page } = trigger;\n\n\t\t\tconst shouldPreload = scrollProgress >= trigger.range[0] - viewportHeightFactor*2 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tscrollProgress <= trigger.range[1] + viewportHeightFactor*2;\n\n\t\t\t// Load slides that are within the preload range\n\t\t\tif( shouldPreload && !page.loaded ) {\n\t\t\t\tpage.loaded = true;\n\t\t\t\tthis.Reveal.slideContent.load( page.slideElement );\n\t\t\t}\n\t\t\telse if( page.loaded ) {\n\t\t\t\tpage.loaded = false;\n\t\t\t\tthis.Reveal.slideContent.unload( page.slideElement );\n\t\t\t}\n\n\t\t\t// If we're within this trigger range, activate it\n\t\t\tif( scrollProgress >= trigger.range[0] && scrollProgress <= trigger.range[1] ) {\n\t\t\t\tthis.activateTrigger( trigger );\n\t\t\t\tactivePage = trigger.page;\n\t\t\t}\n\t\t\t// .. otherwise deactivate\n\t\t\telse if( trigger.active ) {\n\t\t\t\tthis.deactivateTrigger( trigger );\n\t\t\t}\n\t\t} );\n\n\t\t// Each page can have its own scroll triggers, check if any of those\n\t\t// need to be activated/deactivated\n\t\tif( activePage ) {\n\t\t\tactivePage.scrollTriggers.forEach( ( trigger ) => {\n\t\t\t\tif( scrollProgressMid >= trigger.range[0] && scrollProgressMid <= trigger.range[1] ) {\n\t\t\t\t\tthis.activateTrigger( trigger );\n\t\t\t\t}\n\t\t\t\telse if( trigger.active ) {\n\t\t\t\t\tthis.deactivateTrigger( trigger );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Update our visual progress indication\n\t\tthis.setProgressBarValue( scrollTop / ( this.viewportElement.scrollHeight - viewportHeight ) );\n\n\t}\n\n\t/**\n\t * Moves the progress bar playhead to the specified position.\n\t *\n\t * @param {number} progress 0-1\n\t */\n\tsetProgressBarValue( progress ) {\n\n\t\tif( this.progressBar ) {\n\n\t\t\tthis.progressBarPlayhead.style.transform = `translateY(${progress * this.progressBarScrollableHeight}px)`;\n\n\t\t\tthis.getAllPages()\n\t\t\t\t.filter( page => page.progressBarSlide )\n\t\t\t\t.forEach( ( page ) => {\n\t\t\t\t\tpage.progressBarSlide.classList.toggle( 'active', page.active === true );\n\n\t\t\t\t\tpage.scrollTriggers.forEach( ( trigger, i ) => {\n\t\t\t\t\t\tpage.scrollTriggerElements[i].classList.toggle( 'active', page.active === true && trigger.active === true );\n\t\t\t\t\t} );\n\t\t\t\t} );\n\n\t\t\tthis.showProgressBar();\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Show the progress bar and, if configured, automatically hide\n\t * it after a delay.\n\t */\n\tshowProgressBar() {\n\n\t\tthis.progressBar.classList.add( 'visible' );\n\n\t\tclearTimeout( this.hideProgressBarTimeout );\n\n\t\tif( this.Reveal.getConfig().scrollProgress === 'auto' && !this.draggingProgressBar ) {\n\n\t\t\tthis.hideProgressBarTimeout = setTimeout( () => {\n\t\t\t\tif( this.progressBar ) {\n\t\t\t\t\tthis.progressBar.classList.remove( 'visible' );\n\t\t\t\t}\n\t\t\t}, HIDE_SCROLLBAR_TIMEOUT );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Scrolls the given slide element into view.\n\t *\n\t * @param {HTMLElement} slideElement\n\t */\n\tscrollToSlide( slideElement ) {\n\n\t\t// If the scroll view isn't active yet, queue this action\n\t\tif( !this.active ) {\n\t\t\tthis.activatedCallbacks.push( () => this.scrollToSlide( slideElement ) );\n\t\t}\n\t\telse {\n\t\t\t// Find the trigger for this slide\n\t\t\tconst trigger = this.getScrollTriggerBySlide( slideElement );\n\n\t\t\tif( trigger ) {\n\t\t\t\t// Use the trigger's range to calculate the scroll position\n\t\t\t\tthis.viewportElement.scrollTop = trigger.range[0] * ( this.viewportElement.scrollHeight - this.viewportElement.offsetHeight );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Persists the current scroll position to session storage\n\t * so that it can be restored.\n\t */\n\tstoreScrollPosition() {\n\n\t\tclearTimeout( this.storeScrollPositionTimeout );\n\n\t\tthis.storeScrollPositionTimeout = setTimeout( () => {\n\t\t\tsessionStorage.setItem( 'reveal-scroll-top', this.viewportElement.scrollTop );\n\t\t\tsessionStorage.setItem( 'reveal-scroll-origin', location.origin + location.pathname );\n\n\t\t\tthis.storeScrollPositionTimeout = null;\n\t\t}, 50 );\n\n\t}\n\n\t/**\n\t * Restores the scroll position when a deck is reloader.\n\t */\n\trestoreScrollPosition() {\n\n\t\tconst scrollPosition = sessionStorage.getItem( 'reveal-scroll-top' );\n\t\tconst scrollOrigin = sessionStorage.getItem( 'reveal-scroll-origin' );\n\n\t\tif( scrollPosition && scrollOrigin === location.origin + location.pathname ) {\n\t\t\tthis.viewportElement.scrollTop = parseInt( scrollPosition, 10 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Activates the given page and starts its embedded conten\n\t * if there is any.\n\t *\n\t * @param {object} page\n\t */\n\tactivatePage( page ) {\n\n\t\tif( !page.active ) {\n\n\t\t\tpage.active = true;\n\n\t\t\tconst { slideElement, backgroundElement, contentElement, indexh, indexv } = page;\n\n\t\t\tcontentElement.style.display = 'block';\n\n\t\t\tslideElement.classList.add( 'present' );\n\n\t\t\tif( backgroundElement ) {\n\t\t\t\tbackgroundElement.classList.add( 'present' );\n\t\t\t}\n\n\t\t\tthis.Reveal.setCurrentScrollPage( slideElement, indexh, indexv );\n\t\t\tthis.Reveal.backgrounds.bubbleSlideContrastClassToElement( slideElement, this.viewportElement );\n\n\t\t\t// If this page is part of an auto-animation there will be one\n\t\t\t// content element per auto-animated page. We need to show the\n\t\t\t// current page and hide all others.\n\t\t\tArray.from( contentElement.parentNode.querySelectorAll( '.scroll-page-content' ) ).forEach( sibling => {\n\t\t\t\tif( sibling !== contentElement ) {\n\t\t\t\t\tsibling.style.display = 'none';\n\t\t\t\t}\n\t\t\t});\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Deactivates the page after it has been visible.\n\t *\n\t * @param {object} page\n\t */\n\tdeactivatePage( page ) {\n\n\t\tif( page.active ) {\n\n\t\t\tpage.active = false;\n\t\t\tpage.slideElement.classList.remove( 'present' );\n\t\t\tpage.backgroundElement.classList.remove( 'present' );\n\n\t\t}\n\n\t}\n\n\tactivateTrigger( trigger ) {\n\n\t\tif( !trigger.active ) {\n\t\t\ttrigger.active = true;\n\t\t\ttrigger.activate();\n\t\t}\n\n\t}\n\n\tdeactivateTrigger( trigger ) {\n\n\t\tif( trigger.active ) {\n\t\t\ttrigger.active = false;\n\n\t\t\tif( trigger.deactivate ) {\n\t\t\t\ttrigger.deactivate();\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Retrieve a slide by its original h/v index (i.e. the indices the\n\t * slide had before being linearized).\n\t *\n\t * @param {number} h\n\t * @param {number} v\n\t * @returns {HTMLElement}\n\t */\n\tgetSlideByIndices( h, v ) {\n\n\t\tconst page = this.getAllPages().find( page => {\n\t\t\treturn page.indexh === h && page.indexv === v;\n\t\t} );\n\n\t\treturn page ? page.slideElement : null;\n\n\t}\n\n\t/**\n\t * Retrieve a list of all scroll triggers for the given slide\n\t * DOM element.\n\t *\n\t * @param {HTMLElement} slide\n\t * @returns {Array}\n\t */\n\tgetScrollTriggerBySlide( slide ) {\n\n\t\treturn this.slideTriggers.find( trigger => trigger.page.slideElement === slide );\n\n\t}\n\n\t/**\n\t * Get a list of all pages in the scroll view. This includes\n\t * both top-level slides and auto-animate steps.\n\t *\n\t * @returns {Array}\n\t */\n\tgetAllPages() {\n\n\t\treturn this.pages.flatMap( page => [page, ...(page.autoAnimatePages || [])] );\n\n\t}\n\n\tonScroll() {\n\n\t\tthis.syncScrollPosition();\n\t\tthis.storeScrollPosition();\n\n\t}\n\n\tget viewportElement() {\n\n\t\treturn this.Reveal.getViewportElement();\n\n\t}\n\n}\n","import { SLIDES_SELECTOR } from '../utils/constants.js'\nimport { queryAll, createStyleSheet } from '../utils/util.js'\n\n/**\n * Setups up our presentation for printing/exporting to PDF.\n */\nexport default class PrintView {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t}\n\n\t/**\n\t * Configures the presentation for printing to a static\n\t * PDF.\n\t */\n\tasync activate() {\n\n\t\tconst config = this.Reveal.getConfig();\n\t\tconst slides = queryAll( this.Reveal.getRevealElement(), SLIDES_SELECTOR )\n\n\t\t// Compute slide numbers now, before we start duplicating slides\n\t\tconst injectPageNumbers = config.slideNumber && /all|print/i.test( config.showSlideNumber );\n\n\t\tconst slideSize = this.Reveal.getComputedSlideSize( window.innerWidth, window.innerHeight );\n\n\t\t// Dimensions of the PDF pages\n\t\tconst pageWidth = Math.floor( slideSize.width * ( 1 + config.margin ) ),\n\t\t\tpageHeight = Math.floor( slideSize.height * ( 1 + config.margin ) );\n\n\t\t// Dimensions of slides within the pages\n\t\tconst slideWidth = slideSize.width,\n\t\t\tslideHeight = slideSize.height;\n\n\t\tawait new Promise( requestAnimationFrame );\n\n\t\t// Let the browser know what page size we want to print\n\t\tcreateStyleSheet( '@page{size:'+ pageWidth +'px '+ pageHeight +'px; margin: 0px;}' );\n\n\t\t// Limit the size of certain elements to the dimensions of the slide\n\t\tcreateStyleSheet( '.reveal section>img, .reveal section>video, .reveal section>iframe{max-width: '+ slideWidth +'px; max-height:'+ slideHeight +'px}' );\n\n\t\tdocument.documentElement.classList.add( 'reveal-print', 'print-pdf' );\n\t\tdocument.body.style.width = pageWidth + 'px';\n\t\tdocument.body.style.height = pageHeight + 'px';\n\n\t\tconst viewportElement = this.Reveal.getViewportElement();\n\t\tlet presentationBackground;\n\t\tif( viewportElement ) {\n\t\t\tconst viewportStyles = window.getComputedStyle( viewportElement );\n\t\t\tif( viewportStyles && viewportStyles.background ) {\n\t\t\t\tpresentationBackground = viewportStyles.background;\n\t\t\t}\n\t\t}\n\n\t\t// Make sure stretch elements fit on slide\n\t\tawait new Promise( requestAnimationFrame );\n\t\tthis.Reveal.layoutSlideContents( slideWidth, slideHeight );\n\n\t\t// Batch scrollHeight access to prevent layout thrashing\n\t\tawait new Promise( requestAnimationFrame );\n\n\t\tconst slideScrollHeights = slides.map( slide => slide.scrollHeight );\n\n\t\tconst pages = [];\n\t\tconst pageContainer = slides[0].parentNode;\n\t\tlet slideNumber = 1;\n\n\t\t// Slide and slide background layout\n\t\tslides.forEach( function( slide, index ) {\n\n\t\t\t// Vertical stacks are not centred since their section\n\t\t\t// children will be\n\t\t\tif( slide.classList.contains( 'stack' ) === false ) {\n\t\t\t\t// Center the slide inside of the page, giving the slide some margin\n\t\t\t\tlet left = ( pageWidth - slideWidth ) / 2;\n\t\t\t\tlet top = ( pageHeight - slideHeight ) / 2;\n\n\t\t\t\tconst contentHeight = slideScrollHeights[ index ];\n\t\t\t\tlet numberOfPages = Math.max( Math.ceil( contentHeight / pageHeight ), 1 );\n\n\t\t\t\t// Adhere to configured pages per slide limit\n\t\t\t\tnumberOfPages = Math.min( numberOfPages, config.pdfMaxPagesPerSlide );\n\n\t\t\t\t// Center slides vertically\n\t\t\t\tif( numberOfPages === 1 && config.center || slide.classList.contains( 'center' ) ) {\n\t\t\t\t\ttop = Math.max( ( pageHeight - contentHeight ) / 2, 0 );\n\t\t\t\t}\n\n\t\t\t\t// Wrap the slide in a page element and hide its overflow\n\t\t\t\t// so that no page ever flows onto another\n\t\t\t\tconst page = document.createElement( 'div' );\n\t\t\t\tpages.push( page );\n\n\t\t\t\tpage.className = 'pdf-page';\n\t\t\t\tpage.style.height = ( ( pageHeight + config.pdfPageHeightOffset ) * numberOfPages ) + 'px';\n\n\t\t\t\t// Copy the presentation-wide background to each individual\n\t\t\t\t// page when printing\n\t\t\t\tif( presentationBackground ) {\n\t\t\t\t\tpage.style.background = presentationBackground;\n\t\t\t\t}\n\n\t\t\t\tpage.appendChild( slide );\n\n\t\t\t\t// Position the slide inside of the page\n\t\t\t\tslide.style.left = left + 'px';\n\t\t\t\tslide.style.top = top + 'px';\n\t\t\t\tslide.style.width = slideWidth + 'px';\n\n\t\t\t\tthis.Reveal.slideContent.layout( slide );\n\n\t\t\t\tif( slide.slideBackgroundElement ) {\n\t\t\t\t\tpage.insertBefore( slide.slideBackgroundElement, slide );\n\t\t\t\t}\n\n\t\t\t\t// Inject notes if `showNotes` is enabled\n\t\t\t\tif( config.showNotes ) {\n\n\t\t\t\t\t// Are there notes for this slide?\n\t\t\t\t\tconst notes = this.Reveal.getSlideNotes( slide );\n\t\t\t\t\tif( notes ) {\n\n\t\t\t\t\t\tconst notesSpacing = 8;\n\t\t\t\t\t\tconst notesLayout = typeof config.showNotes === 'string' ? config.showNotes : 'inline';\n\t\t\t\t\t\tconst notesElement = document.createElement( 'div' );\n\t\t\t\t\t\tnotesElement.classList.add( 'speaker-notes' );\n\t\t\t\t\t\tnotesElement.classList.add( 'speaker-notes-pdf' );\n\t\t\t\t\t\tnotesElement.setAttribute( 'data-layout', notesLayout );\n\t\t\t\t\t\tnotesElement.innerHTML = notes;\n\n\t\t\t\t\t\tif( notesLayout === 'separate-page' ) {\n\t\t\t\t\t\t\tpages.push( notesElement );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tnotesElement.style.left = notesSpacing + 'px';\n\t\t\t\t\t\t\tnotesElement.style.bottom = notesSpacing + 'px';\n\t\t\t\t\t\t\tnotesElement.style.width = ( pageWidth - notesSpacing*2 ) + 'px';\n\t\t\t\t\t\t\tpage.appendChild( notesElement );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t\t// Inject page numbers if `slideNumbers` are enabled\n\t\t\t\tif( injectPageNumbers ) {\n\t\t\t\t\tconst numberElement = document.createElement( 'div' );\n\t\t\t\t\tnumberElement.classList.add( 'slide-number' );\n\t\t\t\t\tnumberElement.classList.add( 'slide-number-pdf' );\n\t\t\t\t\tnumberElement.innerHTML = slideNumber++;\n\t\t\t\t\tpage.appendChild( numberElement );\n\t\t\t\t}\n\n\t\t\t\t// Copy page and show fragments one after another\n\t\t\t\tif( config.pdfSeparateFragments ) {\n\n\t\t\t\t\t// Each fragment 'group' is an array containing one or more\n\t\t\t\t\t// fragments. Multiple fragments that appear at the same time\n\t\t\t\t\t// are part of the same group.\n\t\t\t\t\tconst fragmentGroups = this.Reveal.fragments.sort( page.querySelectorAll( '.fragment' ), true );\n\n\t\t\t\t\tlet previousFragmentStep;\n\n\t\t\t\t\tfragmentGroups.forEach( function( fragments, index ) {\n\n\t\t\t\t\t\t// Remove 'current-fragment' from the previous group\n\t\t\t\t\t\tif( previousFragmentStep ) {\n\t\t\t\t\t\t\tpreviousFragmentStep.forEach( function( fragment ) {\n\t\t\t\t\t\t\t\tfragment.classList.remove( 'current-fragment' );\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Show the fragments for the current index\n\t\t\t\t\t\tfragments.forEach( function( fragment ) {\n\t\t\t\t\t\t\tfragment.classList.add( 'visible', 'current-fragment' );\n\t\t\t\t\t\t}, this );\n\n\t\t\t\t\t\t// Create a separate page for the current fragment state\n\t\t\t\t\t\tconst clonedPage = page.cloneNode( true );\n\n\t\t\t\t\t\t// Inject unique page numbers for fragments\n\t\t\t\t\t\tif( injectPageNumbers ) {\n\t\t\t\t\t\t\tconst numberElement = clonedPage.querySelector( '.slide-number-pdf' );\n\t\t\t\t\t\t\tconst fragmentNumber = index + 1;\n\t\t\t\t\t\t\tnumberElement.innerHTML += '.' + fragmentNumber;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tpages.push( clonedPage );\n\n\t\t\t\t\t\tpreviousFragmentStep = fragments;\n\n\t\t\t\t\t}, this );\n\n\t\t\t\t\t// Reset the first/original page so that all fragments are hidden\n\t\t\t\t\tfragmentGroups.forEach( function( fragments ) {\n\t\t\t\t\t\tfragments.forEach( function( fragment ) {\n\t\t\t\t\t\t\tfragment.classList.remove( 'visible', 'current-fragment' );\n\t\t\t\t\t\t} );\n\t\t\t\t\t} );\n\n\t\t\t\t}\n\t\t\t\t// Show all fragments\n\t\t\t\telse {\n\t\t\t\t\tqueryAll( page, '.fragment:not(.fade-out)' ).forEach( function( fragment ) {\n\t\t\t\t\t\tfragment.classList.add( 'visible' );\n\t\t\t\t\t} );\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}, this );\n\n\t\tawait new Promise( requestAnimationFrame );\n\n\t\tpages.forEach( page => pageContainer.appendChild( page ) );\n\n\t\t// Re-run JS-based content layout after the slide is added to page DOM\n\t\tthis.Reveal.slideContent.layout( this.Reveal.getSlidesElement() );\n\n\t\t// Notify subscribers that the PDF layout is good to go\n\t\tthis.Reveal.dispatchEvent({ type: 'pdf-ready' });\n\n\t}\n\n\t/**\n\t * Checks if the print mode is/should be activated.\n\t */\n\tisActive() {\n\n\t\treturn this.Reveal.getConfig().view === 'print';\n\n\t}\n\n}","import { extend, queryAll } from '../utils/util.js'\n\n/**\n * Handles sorting and navigation of slide fragments.\n * Fragments are elements within a slide that are\n * revealed/animated incrementally.\n */\nexport default class Fragments {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t}\n\n\t/**\n\t * Called when the reveal.js config is updated.\n\t */\n\tconfigure( config, oldConfig ) {\n\n\t\tif( config.fragments === false ) {\n\t\t\tthis.disable();\n\t\t}\n\t\telse if( oldConfig.fragments === false ) {\n\t\t\tthis.enable();\n\t\t}\n\n\t}\n\n\t/**\n\t * If fragments are disabled in the deck, they should all be\n\t * visible rather than stepped through.\n\t */\n\tdisable() {\n\n\t\tqueryAll( this.Reveal.getSlidesElement(), '.fragment' ).forEach( element => {\n\t\t\telement.classList.add( 'visible' );\n\t\t\telement.classList.remove( 'current-fragment' );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Reverse of #disable(). Only called if fragments have\n\t * previously been disabled.\n\t */\n\tenable() {\n\n\t\tqueryAll( this.Reveal.getSlidesElement(), '.fragment' ).forEach( element => {\n\t\t\telement.classList.remove( 'visible' );\n\t\t\telement.classList.remove( 'current-fragment' );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Returns an object describing the available fragment\n\t * directions.\n\t *\n\t * @return {{prev: boolean, next: boolean}}\n\t */\n\tavailableRoutes() {\n\n\t\tlet currentSlide = this.Reveal.getCurrentSlide();\n\t\tif( currentSlide && this.Reveal.getConfig().fragments ) {\n\t\t\tlet fragments = currentSlide.querySelectorAll( '.fragment:not(.disabled)' );\n\t\t\tlet hiddenFragments = currentSlide.querySelectorAll( '.fragment:not(.disabled):not(.visible)' );\n\n\t\t\treturn {\n\t\t\t\tprev: fragments.length - hiddenFragments.length > 0,\n\t\t\t\tnext: !!hiddenFragments.length\n\t\t\t};\n\t\t}\n\t\telse {\n\t\t\treturn { prev: false, next: false };\n\t\t}\n\n\t}\n\n\t/**\n\t * Return a sorted fragments list, ordered by an increasing\n\t * \"data-fragment-index\" attribute.\n\t *\n\t * Fragments will be revealed in the order that they are returned by\n\t * this function, so you can use the index attributes to control the\n\t * order of fragment appearance.\n\t *\n\t * To maintain a sensible default fragment order, fragments are presumed\n\t * to be passed in document order. This function adds a \"fragment-index\"\n\t * attribute to each node if such an attribute is not already present,\n\t * and sets that attribute to an integer value which is the position of\n\t * the fragment within the fragments list.\n\t *\n\t * @param {object[]|*} fragments\n\t * @param {boolean} grouped If true the returned array will contain\n\t * nested arrays for all fragments with the same index\n\t * @return {object[]} sorted Sorted array of fragments\n\t */\n\tsort( fragments, grouped = false ) {\n\n\t\tfragments = Array.from( fragments );\n\n\t\tlet ordered = [],\n\t\t\tunordered = [],\n\t\t\tsorted = [];\n\n\t\t// Group ordered and unordered elements\n\t\tfragments.forEach( fragment => {\n\t\t\tif( fragment.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\tlet index = parseInt( fragment.getAttribute( 'data-fragment-index' ), 10 );\n\n\t\t\t\tif( !ordered[index] ) {\n\t\t\t\t\tordered[index] = [];\n\t\t\t\t}\n\n\t\t\t\tordered[index].push( fragment );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tunordered.push( [ fragment ] );\n\t\t\t}\n\t\t} );\n\n\t\t// Append fragments without explicit indices in their\n\t\t// DOM order\n\t\tordered = ordered.concat( unordered );\n\n\t\t// Manually count the index up per group to ensure there\n\t\t// are no gaps\n\t\tlet index = 0;\n\n\t\t// Push all fragments in their sorted order to an array,\n\t\t// this flattens the groups\n\t\tordered.forEach( group => {\n\t\t\tgroup.forEach( fragment => {\n\t\t\t\tsorted.push( fragment );\n\t\t\t\tfragment.setAttribute( 'data-fragment-index', index );\n\t\t\t} );\n\n\t\t\tindex ++;\n\t\t} );\n\n\t\treturn grouped === true ? ordered : sorted;\n\n\t}\n\n\t/**\n\t * Sorts and formats all of fragments in the\n\t * presentation.\n\t */\n\tsortAll() {\n\n\t\tthis.Reveal.getHorizontalSlides().forEach( horizontalSlide => {\n\n\t\t\tlet verticalSlides = queryAll( horizontalSlide, 'section' );\n\t\t\tverticalSlides.forEach( ( verticalSlide, y ) => {\n\n\t\t\t\tthis.sort( verticalSlide.querySelectorAll( '.fragment' ) );\n\n\t\t\t}, this );\n\n\t\t\tif( verticalSlides.length === 0 ) this.sort( horizontalSlide.querySelectorAll( '.fragment' ) );\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Refreshes the fragments on the current slide so that they\n\t * have the appropriate classes (.visible + .current-fragment).\n\t *\n\t * @param {number} [index] The index of the current fragment\n\t * @param {array} [fragments] Array containing all fragments\n\t * in the current slide\n\t *\n\t * @return {{shown: array, hidden: array}}\n\t */\n\tupdate( index, fragments, slide = this.Reveal.getCurrentSlide() ) {\n\n\t\tlet changedFragments = {\n\t\t\tshown: [],\n\t\t\thidden: []\n\t\t};\n\n\t\tif( slide && this.Reveal.getConfig().fragments ) {\n\n\t\t\tfragments = fragments || this.sort( slide.querySelectorAll( '.fragment' ) );\n\n\t\t\tif( fragments.length ) {\n\n\t\t\t\tlet maxIndex = 0;\n\n\t\t\t\tif( typeof index !== 'number' ) {\n\t\t\t\t\tlet currentFragment = this.sort( slide.querySelectorAll( '.fragment.visible' ) ).pop();\n\t\t\t\t\tif( currentFragment ) {\n\t\t\t\t\t\tindex = parseInt( currentFragment.getAttribute( 'data-fragment-index' ) || 0, 10 );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tArray.from( fragments ).forEach( ( el, i ) => {\n\n\t\t\t\t\tif( el.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\t\t\ti = parseInt( el.getAttribute( 'data-fragment-index' ), 10 );\n\t\t\t\t\t}\n\n\t\t\t\t\tmaxIndex = Math.max( maxIndex, i );\n\n\t\t\t\t\t// Visible fragments\n\t\t\t\t\tif( i <= index ) {\n\t\t\t\t\t\tlet wasVisible = el.classList.contains( 'visible' )\n\t\t\t\t\t\tel.classList.add( 'visible' );\n\t\t\t\t\t\tel.classList.remove( 'current-fragment' );\n\n\t\t\t\t\t\tif( i === index ) {\n\t\t\t\t\t\t\t// Announce the fragments one by one to the Screen Reader\n\t\t\t\t\t\t\tthis.Reveal.announceStatus( this.Reveal.getStatusText( el ) );\n\n\t\t\t\t\t\t\tel.classList.add( 'current-fragment' );\n\t\t\t\t\t\t\tthis.Reveal.slideContent.startEmbeddedContent( el );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif( !wasVisible ) {\n\t\t\t\t\t\t\tchangedFragments.shown.push( el )\n\t\t\t\t\t\t\tthis.Reveal.dispatchEvent({\n\t\t\t\t\t\t\t\ttarget: el,\n\t\t\t\t\t\t\t\ttype: 'visible',\n\t\t\t\t\t\t\t\tbubbles: false\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// Hidden fragments\n\t\t\t\t\telse {\n\t\t\t\t\t\tlet wasVisible = el.classList.contains( 'visible' )\n\t\t\t\t\t\tel.classList.remove( 'visible' );\n\t\t\t\t\t\tel.classList.remove( 'current-fragment' );\n\n\t\t\t\t\t\tif( wasVisible ) {\n\t\t\t\t\t\t\tthis.Reveal.slideContent.stopEmbeddedContent( el );\n\t\t\t\t\t\t\tchangedFragments.hidden.push( el );\n\t\t\t\t\t\t\tthis.Reveal.dispatchEvent({\n\t\t\t\t\t\t\t\ttarget: el,\n\t\t\t\t\t\t\t\ttype: 'hidden',\n\t\t\t\t\t\t\t\tbubbles: false\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\n\t\t\t\t// Write the current fragment index to the slide <section>.\n\t\t\t\t// This can be used by end users to apply styles based on\n\t\t\t\t// the current fragment index.\n\t\t\t\tindex = typeof index === 'number' ? index : -1;\n\t\t\t\tindex = Math.max( Math.min( index, maxIndex ), -1 );\n\t\t\t\tslide.setAttribute( 'data-fragment', index );\n\n\t\t\t}\n\n\t\t}\n\n\t\treturn changedFragments;\n\n\t}\n\n\t/**\n\t * Formats the fragments on the given slide so that they have\n\t * valid indices. Call this if fragments are changed in the DOM\n\t * after reveal.js has already initialized.\n\t *\n\t * @param {HTMLElement} slide\n\t * @return {Array} a list of the HTML fragments that were synced\n\t */\n\tsync( slide = this.Reveal.getCurrentSlide() ) {\n\n\t\treturn this.sort( slide.querySelectorAll( '.fragment' ) );\n\n\t}\n\n\t/**\n\t * Navigate to the specified slide fragment.\n\t *\n\t * @param {?number} index The index of the fragment that\n\t * should be shown, -1 means all are invisible\n\t * @param {number} offset Integer offset to apply to the\n\t * fragment index\n\t *\n\t * @return {boolean} true if a change was made in any\n\t * fragments visibility as part of this call\n\t */\n\tgoto( index, offset = 0 ) {\n\n\t\tlet currentSlide = this.Reveal.getCurrentSlide();\n\t\tif( currentSlide && this.Reveal.getConfig().fragments ) {\n\n\t\t\tlet fragments = this.sort( currentSlide.querySelectorAll( '.fragment:not(.disabled)' ) );\n\t\t\tif( fragments.length ) {\n\n\t\t\t\t// If no index is specified, find the current\n\t\t\t\tif( typeof index !== 'number' ) {\n\t\t\t\t\tlet lastVisibleFragment = this.sort( currentSlide.querySelectorAll( '.fragment:not(.disabled).visible' ) ).pop();\n\n\t\t\t\t\tif( lastVisibleFragment ) {\n\t\t\t\t\t\tindex = parseInt( lastVisibleFragment.getAttribute( 'data-fragment-index' ) || 0, 10 );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tindex = -1;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply the offset if there is one\n\t\t\t\tindex += offset;\n\n\t\t\t\tlet changedFragments = this.update( index, fragments );\n\n\t\t\t\tif( changedFragments.hidden.length ) {\n\t\t\t\t\tthis.Reveal.dispatchEvent({\n\t\t\t\t\t\ttype: 'fragmenthidden',\n\t\t\t\t\t\tdata: {\n\t\t\t\t\t\t\tfragment: changedFragments.hidden[0],\n\t\t\t\t\t\t\tfragments: changedFragments.hidden\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tif( changedFragments.shown.length ) {\n\t\t\t\t\tthis.Reveal.dispatchEvent({\n\t\t\t\t\t\ttype: 'fragmentshown',\n\t\t\t\t\t\tdata: {\n\t\t\t\t\t\t\tfragment: changedFragments.shown[0],\n\t\t\t\t\t\t\tfragments: changedFragments.shown\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tthis.Reveal.controls.update();\n\t\t\t\tthis.Reveal.progress.update();\n\n\t\t\t\tif( this.Reveal.getConfig().fragmentInURL ) {\n\t\t\t\t\tthis.Reveal.location.writeURL();\n\t\t\t\t}\n\n\t\t\t\treturn !!( changedFragments.shown.length || changedFragments.hidden.length );\n\n\t\t\t}\n\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\t/**\n\t * Navigate to the next slide fragment.\n\t *\n\t * @return {boolean} true if there was a next fragment,\n\t * false otherwise\n\t */\n\tnext() {\n\n\t\treturn this.goto( null, 1 );\n\n\t}\n\n\t/**\n\t * Navigate to the previous slide fragment.\n\t *\n\t * @return {boolean} true if there was a previous fragment,\n\t * false otherwise\n\t */\n\tprev() {\n\n\t\treturn this.goto( null, -1 );\n\n\t}\n\n}","import { SLIDES_SELECTOR } from '../utils/constants.js'\nimport { extend, queryAll, transformElement } from '../utils/util.js'\n\n/**\n * Handles all logic related to the overview mode\n * (birds-eye view of all slides).\n */\nexport default class Overview {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t\tthis.active = false;\n\n\t\tthis.onSlideClicked = this.onSlideClicked.bind( this );\n\n\t}\n\n\t/**\n\t * Displays the overview of slides (quick nav) by scaling\n\t * down and arranging all slide elements.\n\t */\n\tactivate() {\n\n\t\t// Only proceed if enabled in config\n\t\tif( this.Reveal.getConfig().overview && !this.Reveal.isScrollView() && !this.isActive() ) {\n\n\t\t\tthis.active = true;\n\n\t\t\tthis.Reveal.getRevealElement().classList.add( 'overview' );\n\n\t\t\t// Don't auto-slide while in overview mode\n\t\t\tthis.Reveal.cancelAutoSlide();\n\n\t\t\t// Move the backgrounds element into the slide container to\n\t\t\t// that the same scaling is applied\n\t\t\tthis.Reveal.getSlidesElement().appendChild( this.Reveal.getBackgroundsElement() );\n\n\t\t\t// Clicking on an overview slide navigates to it\n\t\t\tqueryAll( this.Reveal.getRevealElement(), SLIDES_SELECTOR ).forEach( slide => {\n\t\t\t\tif( !slide.classList.contains( 'stack' ) ) {\n\t\t\t\t\tslide.addEventListener( 'click', this.onSlideClicked, true );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Calculate slide sizes\n\t\t\tconst margin = 70;\n\t\t\tconst slideSize = this.Reveal.getComputedSlideSize();\n\t\t\tthis.overviewSlideWidth = slideSize.width + margin;\n\t\t\tthis.overviewSlideHeight = slideSize.height + margin;\n\n\t\t\t// Reverse in RTL mode\n\t\t\tif( this.Reveal.getConfig().rtl ) {\n\t\t\t\tthis.overviewSlideWidth = -this.overviewSlideWidth;\n\t\t\t}\n\n\t\t\tthis.Reveal.updateSlidesVisibility();\n\n\t\t\tthis.layout();\n\t\t\tthis.update();\n\n\t\t\tthis.Reveal.layout();\n\n\t\t\tconst indices = this.Reveal.getIndices();\n\n\t\t\t// Notify observers of the overview showing\n\t\t\tthis.Reveal.dispatchEvent({\n\t\t\t\ttype: 'overviewshown',\n\t\t\t\tdata: {\n\t\t\t\t\t'indexh': indices.h,\n\t\t\t\t\t'indexv': indices.v,\n\t\t\t\t\t'currentSlide': this.Reveal.getCurrentSlide()\n\t\t\t\t}\n\t\t\t});\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Uses CSS transforms to position all slides in a grid for\n\t * display inside of the overview mode.\n\t */\n\tlayout() {\n\n\t\t// Layout slides\n\t\tthis.Reveal.getHorizontalSlides().forEach( ( hslide, h ) => {\n\t\t\thslide.setAttribute( 'data-index-h', h );\n\t\t\ttransformElement( hslide, 'translate3d(' + ( h * this.overviewSlideWidth ) + 'px, 0, 0)' );\n\n\t\t\tif( hslide.classList.contains( 'stack' ) ) {\n\n\t\t\t\tqueryAll( hslide, 'section' ).forEach( ( vslide, v ) => {\n\t\t\t\t\tvslide.setAttribute( 'data-index-h', h );\n\t\t\t\t\tvslide.setAttribute( 'data-index-v', v );\n\n\t\t\t\t\ttransformElement( vslide, 'translate3d(0, ' + ( v * this.overviewSlideHeight ) + 'px, 0)' );\n\t\t\t\t} );\n\n\t\t\t}\n\t\t} );\n\n\t\t// Layout slide backgrounds\n\t\tArray.from( this.Reveal.getBackgroundsElement().childNodes ).forEach( ( hbackground, h ) => {\n\t\t\ttransformElement( hbackground, 'translate3d(' + ( h * this.overviewSlideWidth ) + 'px, 0, 0)' );\n\n\t\t\tqueryAll( hbackground, '.slide-background' ).forEach( ( vbackground, v ) => {\n\t\t\t\ttransformElement( vbackground, 'translate3d(0, ' + ( v * this.overviewSlideHeight ) + 'px, 0)' );\n\t\t\t} );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Moves the overview viewport to the current slides.\n\t * Called each time the current slide changes.\n\t */\n\tupdate() {\n\n\t\tconst vmin = Math.min( window.innerWidth, window.innerHeight );\n\t\tconst scale = Math.max( vmin / 5, 150 ) / vmin;\n\t\tconst indices = this.Reveal.getIndices();\n\n\t\tthis.Reveal.transformSlides( {\n\t\t\toverview: [\n\t\t\t\t'scale('+ scale +')',\n\t\t\t\t'translateX('+ ( -indices.h * this.overviewSlideWidth ) +'px)',\n\t\t\t\t'translateY('+ ( -indices.v * this.overviewSlideHeight ) +'px)'\n\t\t\t].join( ' ' )\n\t\t} );\n\n\t}\n\n\t/**\n\t * Exits the slide overview and enters the currently\n\t * active slide.\n\t */\n\tdeactivate() {\n\n\t\t// Only proceed if enabled in config\n\t\tif( this.Reveal.getConfig().overview ) {\n\n\t\t\tthis.active = false;\n\n\t\t\tthis.Reveal.getRevealElement().classList.remove( 'overview' );\n\n\t\t\t// Temporarily add a class so that transitions can do different things\n\t\t\t// depending on whether they are exiting/entering overview, or just\n\t\t\t// moving from slide to slide\n\t\t\tthis.Reveal.getRevealElement().classList.add( 'overview-deactivating' );\n\n\t\t\tsetTimeout( () => {\n\t\t\t\tthis.Reveal.getRevealElement().classList.remove( 'overview-deactivating' );\n\t\t\t}, 1 );\n\n\t\t\t// Move the background element back out\n\t\t\tthis.Reveal.getRevealElement().appendChild( this.Reveal.getBackgroundsElement() );\n\n\t\t\t// Clean up changes made to slides\n\t\t\tqueryAll( this.Reveal.getRevealElement(), SLIDES_SELECTOR ).forEach( slide => {\n\t\t\t\ttransformElement( slide, '' );\n\n\t\t\t\tslide.removeEventListener( 'click', this.onSlideClicked, true );\n\t\t\t} );\n\n\t\t\t// Clean up changes made to backgrounds\n\t\t\tqueryAll( this.Reveal.getBackgroundsElement(), '.slide-background' ).forEach( background => {\n\t\t\t\ttransformElement( background, '' );\n\t\t\t} );\n\n\t\t\tthis.Reveal.transformSlides( { overview: '' } );\n\n\t\t\tconst indices = this.Reveal.getIndices();\n\n\t\t\tthis.Reveal.slide( indices.h, indices.v );\n\t\t\tthis.Reveal.layout();\n\t\t\tthis.Reveal.cueAutoSlide();\n\n\t\t\t// Notify observers of the overview hiding\n\t\t\tthis.Reveal.dispatchEvent({\n\t\t\t\ttype: 'overviewhidden',\n\t\t\t\tdata: {\n\t\t\t\t\t'indexh': indices.h,\n\t\t\t\t\t'indexv': indices.v,\n\t\t\t\t\t'currentSlide': this.Reveal.getCurrentSlide()\n\t\t\t\t}\n\t\t\t});\n\n\t\t}\n\t}\n\n\t/**\n\t * Toggles the slide overview mode on and off.\n\t *\n\t * @param {Boolean} [override] Flag which overrides the\n\t * toggle logic and forcibly sets the desired state. True means\n\t * overview is open, false means it's closed.\n\t */\n\ttoggle( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? this.activate() : this.deactivate();\n\t\t}\n\t\telse {\n\t\t\tthis.isActive() ? this.deactivate() : this.activate();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if the overview is currently active.\n\t *\n\t * @return {Boolean} true if the overview is active,\n\t * false otherwise\n\t */\n\tisActive() {\n\n\t\treturn this.active;\n\n\t}\n\n\t/**\n\t * Invoked when a slide is and we're in the overview.\n\t *\n\t * @param {object} event\n\t */\n\tonSlideClicked( event ) {\n\n\t\tif( this.isActive() ) {\n\t\t\tevent.preventDefault();\n\n\t\t\tlet element = event.target;\n\n\t\t\twhile( element && !element.nodeName.match( /section/gi ) ) {\n\t\t\t\telement = element.parentNode;\n\t\t\t}\n\n\t\t\tif( element && !element.classList.contains( 'disabled' ) ) {\n\n\t\t\t\tthis.deactivate();\n\n\t\t\t\tif( element.nodeName.match( /section/gi ) ) {\n\t\t\t\t\tlet h = parseInt( element.getAttribute( 'data-index-h' ), 10 ),\n\t\t\t\t\t\tv = parseInt( element.getAttribute( 'data-index-v' ), 10 );\n\n\t\t\t\t\tthis.Reveal.slide( h, v );\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t}\n\n}","import { enterFullscreen } from '../utils/util.js'\n\n/**\n * Handles all reveal.js keyboard interactions.\n */\nexport default class Keyboard {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t\t// A key:value map of keyboard keys and descriptions of\n\t\t// the actions they trigger\n\t\tthis.shortcuts = {};\n\n\t\t// Holds custom key code mappings\n\t\tthis.bindings = {};\n\n\t\tthis.onDocumentKeyDown = this.onDocumentKeyDown.bind( this );\n\n\t}\n\n\t/**\n\t * Called when the reveal.js config is updated.\n\t */\n\tconfigure( config, oldConfig ) {\n\n\t\tif( config.navigationMode === 'linear' ) {\n\t\t\tthis.shortcuts['→ , ↓ , SPACE , N , L , J'] = 'Next slide';\n\t\t\tthis.shortcuts['← , ↑ , P , H , K'] = 'Previous slide';\n\t\t}\n\t\telse {\n\t\t\tthis.shortcuts['N , SPACE'] = 'Next slide';\n\t\t\tthis.shortcuts['P , Shift SPACE'] = 'Previous slide';\n\t\t\tthis.shortcuts['← , H'] = 'Navigate left';\n\t\t\tthis.shortcuts['→ , L'] = 'Navigate right';\n\t\t\tthis.shortcuts['↑ , K'] = 'Navigate up';\n\t\t\tthis.shortcuts['↓ , J'] = 'Navigate down';\n\t\t}\n\n\t\tthis.shortcuts['Alt + ←/↑/→/↓'] = 'Navigate without fragments';\n\t\tthis.shortcuts['Shift + ←/↑/→/↓'] = 'Jump to first/last slide';\n\t\tthis.shortcuts['B , .'] = 'Pause';\n\t\tthis.shortcuts['F'] = 'Fullscreen';\n\t\tthis.shortcuts['G'] = 'Jump to slide';\n\t\tthis.shortcuts['ESC, O'] = 'Slide overview';\n\n\t}\n\n\t/**\n\t * Starts listening for keyboard events.\n\t */\n\tbind() {\n\n\t\tdocument.addEventListener( 'keydown', this.onDocumentKeyDown, false );\n\n\t}\n\n\t/**\n\t * Stops listening for keyboard events.\n\t */\n\tunbind() {\n\n\t\tdocument.removeEventListener( 'keydown', this.onDocumentKeyDown, false );\n\n\t}\n\n\t/**\n\t * Add a custom key binding with optional description to\n\t * be added to the help screen.\n\t */\n\taddKeyBinding( binding, callback ) {\n\n\t\tif( typeof binding === 'object' && binding.keyCode ) {\n\t\t\tthis.bindings[binding.keyCode] = {\n\t\t\t\tcallback: callback,\n\t\t\t\tkey: binding.key,\n\t\t\t\tdescription: binding.description\n\t\t\t};\n\t\t}\n\t\telse {\n\t\t\tthis.bindings[binding] = {\n\t\t\t\tcallback: callback,\n\t\t\t\tkey: null,\n\t\t\t\tdescription: null\n\t\t\t};\n\t\t}\n\n\t}\n\n\t/**\n\t * Removes the specified custom key binding.\n\t */\n\tremoveKeyBinding( keyCode ) {\n\n\t\tdelete this.bindings[keyCode];\n\n\t}\n\n\t/**\n\t * Programmatically triggers a keyboard event\n\t *\n\t * @param {int} keyCode\n\t */\n\ttriggerKey( keyCode ) {\n\n\t\tthis.onDocumentKeyDown( { keyCode } );\n\n\t}\n\n\t/**\n\t * Registers a new shortcut to include in the help overlay\n\t *\n\t * @param {String} key\n\t * @param {String} value\n\t */\n\tregisterKeyboardShortcut( key, value ) {\n\n\t\tthis.shortcuts[key] = value;\n\n\t}\n\n\tgetShortcuts() {\n\n\t\treturn this.shortcuts;\n\n\t}\n\n\tgetBindings() {\n\n\t\treturn this.bindings;\n\n\t}\n\n\t/**\n\t * Handler for the document level 'keydown' event.\n\t *\n\t * @param {object} event\n\t */\n\tonDocumentKeyDown( event ) {\n\n\t\tlet config = this.Reveal.getConfig();\n\n\t\t// If there's a condition specified and it returns false,\n\t\t// ignore this event\n\t\tif( typeof config.keyboardCondition === 'function' && config.keyboardCondition(event) === false ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// If keyboardCondition is set, only capture keyboard events\n\t\t// for embedded decks when they are focused\n\t\tif( config.keyboardCondition === 'focused' && !this.Reveal.isFocused() ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Shorthand\n\t\tlet keyCode = event.keyCode;\n\n\t\t// Remember if auto-sliding was paused so we can toggle it\n\t\tlet autoSlideWasPaused = !this.Reveal.isAutoSliding();\n\n\t\tthis.Reveal.onUserInput( event );\n\n\t\t// Is there a focused element that could be using the keyboard?\n\t\tlet activeElementIsCE = document.activeElement && document.activeElement.isContentEditable === true;\n\t\tlet activeElementIsInput = document.activeElement && document.activeElement.tagName && /input|textarea/i.test( document.activeElement.tagName );\n\t\tlet activeElementIsNotes = document.activeElement && document.activeElement.className && /speaker-notes/i.test( document.activeElement.className);\n\n\t\t// Whitelist certain modifiers for slide navigation shortcuts\n\t\tlet keyCodeUsesModifier = [32, 37, 38, 39, 40, 78, 80, 191].indexOf( event.keyCode ) !== -1;\n\n\t\t// Prevent all other events when a modifier is pressed\n\t\tlet unusedModifier = \t!( keyCodeUsesModifier && event.shiftKey || event.altKey ) &&\n\t\t\t\t\t\t\t\t( event.shiftKey || event.altKey || event.ctrlKey || event.metaKey );\n\n\t\t// Disregard the event if there's a focused element or a\n\t\t// keyboard modifier key is present\n\t\tif( activeElementIsCE || activeElementIsInput || activeElementIsNotes || unusedModifier ) return;\n\n\t\t// While paused only allow resume keyboard events; 'b', 'v', '.'\n\t\tlet resumeKeyCodes = [66,86,190,191];\n\t\tlet key;\n\n\t\t// Custom key bindings for togglePause should be able to resume\n\t\tif( typeof config.keyboard === 'object' ) {\n\t\t\tfor( key in config.keyboard ) {\n\t\t\t\tif( config.keyboard[key] === 'togglePause' ) {\n\t\t\t\t\tresumeKeyCodes.push( parseInt( key, 10 ) );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif( this.Reveal.isPaused() && resumeKeyCodes.indexOf( keyCode ) === -1 ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Use linear navigation if we're configured to OR if\n\t\t// the presentation is one-dimensional\n\t\tlet useLinearMode = config.navigationMode === 'linear' || !this.Reveal.hasHorizontalSlides() || !this.Reveal.hasVerticalSlides();\n\n\t\tlet triggered = false;\n\n\t\t// 1. User defined key bindings\n\t\tif( typeof config.keyboard === 'object' ) {\n\n\t\t\tfor( key in config.keyboard ) {\n\n\t\t\t\t// Check if this binding matches the pressed key\n\t\t\t\tif( parseInt( key, 10 ) === keyCode ) {\n\n\t\t\t\t\tlet value = config.keyboard[ key ];\n\n\t\t\t\t\t// Callback function\n\t\t\t\t\tif( typeof value === 'function' ) {\n\t\t\t\t\t\tvalue.apply( null, [ event ] );\n\t\t\t\t\t}\n\t\t\t\t\t// String shortcuts to reveal.js API\n\t\t\t\t\telse if( typeof value === 'string' && typeof this.Reveal[ value ] === 'function' ) {\n\t\t\t\t\t\tthis.Reveal[ value ].call();\n\t\t\t\t\t}\n\n\t\t\t\t\ttriggered = true;\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t// 2. Registered custom key bindings\n\t\tif( triggered === false ) {\n\n\t\t\tfor( key in this.bindings ) {\n\n\t\t\t\t// Check if this binding matches the pressed key\n\t\t\t\tif( parseInt( key, 10 ) === keyCode ) {\n\n\t\t\t\t\tlet action = this.bindings[ key ].callback;\n\n\t\t\t\t\t// Callback function\n\t\t\t\t\tif( typeof action === 'function' ) {\n\t\t\t\t\t\taction.apply( null, [ event ] );\n\t\t\t\t\t}\n\t\t\t\t\t// String shortcuts to reveal.js API\n\t\t\t\t\telse if( typeof action === 'string' && typeof this.Reveal[ action ] === 'function' ) {\n\t\t\t\t\t\tthis.Reveal[ action ].call();\n\t\t\t\t\t}\n\n\t\t\t\t\ttriggered = true;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// 3. System defined key bindings\n\t\tif( triggered === false ) {\n\n\t\t\t// Assume true and try to prove false\n\t\t\ttriggered = true;\n\n\t\t\t// P, PAGE UP\n\t\t\tif( keyCode === 80 || keyCode === 33 ) {\n\t\t\t\tthis.Reveal.prev({skipFragments: event.altKey});\n\t\t\t}\n\t\t\t// N, PAGE DOWN\n\t\t\telse if( keyCode === 78 || keyCode === 34 ) {\n\t\t\t\tthis.Reveal.next({skipFragments: event.altKey});\n\t\t\t}\n\t\t\t// H, LEFT\n\t\t\telse if( keyCode === 72 || keyCode === 37 ) {\n\t\t\t\tif( event.shiftKey ) {\n\t\t\t\t\tthis.Reveal.slide( 0 );\n\t\t\t\t}\n\t\t\t\telse if( !this.Reveal.overview.isActive() && useLinearMode ) {\n\t\t\t\t\tthis.Reveal.prev({skipFragments: event.altKey});\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tthis.Reveal.left({skipFragments: event.altKey});\n\t\t\t\t}\n\t\t\t}\n\t\t\t// L, RIGHT\n\t\t\telse if( keyCode === 76 || keyCode === 39 ) {\n\t\t\t\tif( event.shiftKey ) {\n\t\t\t\t\tthis.Reveal.slide( this.Reveal.getHorizontalSlides().length - 1 );\n\t\t\t\t}\n\t\t\t\telse if( !this.Reveal.overview.isActive() && useLinearMode ) {\n\t\t\t\t\tthis.Reveal.next({skipFragments: event.altKey});\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tthis.Reveal.right({skipFragments: event.altKey});\n\t\t\t\t}\n\t\t\t}\n\t\t\t// K, UP\n\t\t\telse if( keyCode === 75 || keyCode === 38 ) {\n\t\t\t\tif( event.shiftKey ) {\n\t\t\t\t\tthis.Reveal.slide( undefined, 0 );\n\t\t\t\t}\n\t\t\t\telse if( !this.Reveal.overview.isActive() && useLinearMode ) {\n\t\t\t\t\tthis.Reveal.prev({skipFragments: event.altKey});\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tthis.Reveal.up({skipFragments: event.altKey});\n\t\t\t\t}\n\t\t\t}\n\t\t\t// J, DOWN\n\t\t\telse if( keyCode === 74 || keyCode === 40 ) {\n\t\t\t\tif( event.shiftKey ) {\n\t\t\t\t\tthis.Reveal.slide( undefined, Number.MAX_VALUE );\n\t\t\t\t}\n\t\t\t\telse if( !this.Reveal.overview.isActive() && useLinearMode ) {\n\t\t\t\t\tthis.Reveal.next({skipFragments: event.altKey});\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tthis.Reveal.down({skipFragments: event.altKey});\n\t\t\t\t}\n\t\t\t}\n\t\t\t// HOME\n\t\t\telse if( keyCode === 36 ) {\n\t\t\t\tthis.Reveal.slide( 0 );\n\t\t\t}\n\t\t\t// END\n\t\t\telse if( keyCode === 35 ) {\n\t\t\t\tthis.Reveal.slide( this.Reveal.getHorizontalSlides().length - 1 );\n\t\t\t}\n\t\t\t// SPACE\n\t\t\telse if( keyCode === 32 ) {\n\t\t\t\tif( this.Reveal.overview.isActive() ) {\n\t\t\t\t\tthis.Reveal.overview.deactivate();\n\t\t\t\t}\n\t\t\t\tif( event.shiftKey ) {\n\t\t\t\t\tthis.Reveal.prev({skipFragments: event.altKey});\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tthis.Reveal.next({skipFragments: event.altKey});\n\t\t\t\t}\n\t\t\t}\n\t\t\t// TWO-SPOT, SEMICOLON, B, V, PERIOD, LOGITECH PRESENTER TOOLS \"BLACK SCREEN\" BUTTON\n\t\t\telse if( [58, 59, 66, 86, 190].includes( keyCode ) || ( keyCode === 191 && !event.shiftKey ) ) {\n\t\t\t\tthis.Reveal.togglePause();\n\t\t\t}\n\t\t\t// F\n\t\t\telse if( keyCode === 70 ) {\n\t\t\t\tenterFullscreen( config.embedded ? this.Reveal.getViewportElement() : document.documentElement );\n\t\t\t}\n\t\t\t// A\n\t\t\telse if( keyCode === 65 ) {\n\t\t\t\tif( config.autoSlideStoppable ) {\n\t\t\t\t\tthis.Reveal.toggleAutoSlide( autoSlideWasPaused );\n\t\t\t\t}\n\t\t\t}\n\t\t\t// G\n\t\t\telse if( keyCode === 71 ) {\n\t\t\t\tif( config.jumpToSlide ) {\n\t\t\t\t\tthis.Reveal.toggleJumpToSlide();\n\t\t\t\t}\n\t\t\t}\n\t\t\t// ?\n\t\t\telse if( keyCode === 191 && event.shiftKey ) {\n\t\t\t\tthis.Reveal.toggleHelp();\n\t\t\t}\n\t\t\telse {\n\t\t\t\ttriggered = false;\n\t\t\t}\n\n\t\t}\n\n\t\t// If the input resulted in a triggered action we should prevent\n\t\t// the browsers default behavior\n\t\tif( triggered ) {\n\t\t\tevent.preventDefault && event.preventDefault();\n\t\t}\n\t\t// ESC or O key\n\t\telse if( keyCode === 27 || keyCode === 79 ) {\n\t\t\tif( this.Reveal.closeOverlay() === false ) {\n\t\t\t\tthis.Reveal.overview.toggle();\n\t\t\t}\n\n\t\t\tevent.preventDefault && event.preventDefault();\n\t\t}\n\n\t\t// If auto-sliding is enabled we need to cue up\n\t\t// another timeout\n\t\tthis.Reveal.cueAutoSlide();\n\n\t}\n\n}","/**\n * Reads and writes the URL based on reveal.js' current state.\n */\nexport default class Location {\n\n\t// The minimum number of milliseconds that must pass between\n\t// calls to history.replaceState\n\tMAX_REPLACE_STATE_FREQUENCY = 1000\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t\t// Delays updates to the URL due to a Chrome thumbnailer bug\n\t\tthis.writeURLTimeout = 0;\n\n\t\tthis.replaceStateTimestamp = 0;\n\n\t\tthis.onWindowHashChange = this.onWindowHashChange.bind( this );\n\n\t}\n\n\tbind() {\n\n\t\twindow.addEventListener( 'hashchange', this.onWindowHashChange, false );\n\n\t}\n\n\tunbind() {\n\n\t\twindow.removeEventListener( 'hashchange', this.onWindowHashChange, false );\n\n\t}\n\n\t/**\n\t * Returns the slide indices for the given hash link.\n\t *\n\t * @param {string} [hash] the hash string that we want to\n\t * find the indices for\n\t *\n\t * @returns slide indices or null\n\t */\n\tgetIndicesFromHash( hash=window.location.hash, options={} ) {\n\n\t\t// Attempt to parse the hash as either an index or name\n\t\tlet name = hash.replace( /^#\\/?/, '' );\n\t\tlet bits = name.split( '/' );\n\n\t\t// If the first bit is not fully numeric and there is a name we\n\t\t// can assume that this is a named link\n\t\tif( !/^[0-9]*$/.test( bits[0] ) && name.length ) {\n\t\t\tlet slide;\n\n\t\t\tlet f;\n\n\t\t\t// Parse named links with fragments (#/named-link/2)\n\t\t\tif( /\\/[-\\d]+$/g.test( name ) ) {\n\t\t\t\tf = parseInt( name.split( '/' ).pop(), 10 );\n\t\t\t\tf = isNaN(f) ? undefined : f;\n\t\t\t\tname = name.split( '/' ).shift();\n\t\t\t}\n\n\t\t\t// Ensure the named link is a valid HTML ID attribute\n\t\t\ttry {\n\t\t\t\tslide = document\n\t\t\t\t\t.getElementById( decodeURIComponent( name ) )\n\t\t\t\t\t.closest('.slides section');\n\t\t\t}\n\t\t\tcatch ( error ) { }\n\n\t\t\tif( slide ) {\n\t\t\t\treturn { ...this.Reveal.getIndices( slide ), f };\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\tconst config = this.Reveal.getConfig();\n\t\t\tlet hashIndexBase = config.hashOneBasedIndex || options.oneBasedIndex ? 1 : 0;\n\n\t\t\t// Read the index components of the hash\n\t\t\tlet h = ( parseInt( bits[0], 10 ) - hashIndexBase ) || 0,\n\t\t\t\tv = ( parseInt( bits[1], 10 ) - hashIndexBase ) || 0,\n\t\t\t\tf;\n\n\t\t\tif( config.fragmentInURL ) {\n\t\t\t\tf = parseInt( bits[2], 10 );\n\t\t\t\tif( isNaN( f ) ) {\n\t\t\t\t\tf = undefined;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn { h, v, f };\n\t\t}\n\n\t\t// The hash couldn't be parsed or no matching named link was found\n\t\treturn null\n\n\t}\n\n\t/**\n\t * Reads the current URL (hash) and navigates accordingly.\n\t */\n\treadURL() {\n\n\t\tconst currentIndices = this.Reveal.getIndices();\n\t\tconst newIndices = this.getIndicesFromHash();\n\n\t\tif( newIndices ) {\n\t\t\tif( ( newIndices.h !== currentIndices.h || newIndices.v !== currentIndices.v || newIndices.f !== undefined ) ) {\n\t\t\t\t\tthis.Reveal.slide( newIndices.h, newIndices.v, newIndices.f );\n\t\t\t}\n\t\t}\n\t\t// If no new indices are available, we're trying to navigate to\n\t\t// a slide hash that does not exist\n\t\telse {\n\t\t\tthis.Reveal.slide( currentIndices.h || 0, currentIndices.v || 0 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the page URL (hash) to reflect the current\n\t * state.\n\t *\n\t * @param {number} delay The time in ms to wait before\n\t * writing the hash\n\t */\n\twriteURL( delay ) {\n\n\t\tlet config = this.Reveal.getConfig();\n\t\tlet currentSlide = this.Reveal.getCurrentSlide();\n\n\t\t// Make sure there's never more than one timeout running\n\t\tclearTimeout( this.writeURLTimeout );\n\n\t\t// If a delay is specified, timeout this call\n\t\tif( typeof delay === 'number' ) {\n\t\t\tthis.writeURLTimeout = setTimeout( this.writeURL, delay );\n\t\t}\n\t\telse if( currentSlide ) {\n\n\t\t\tlet hash = this.getHash();\n\n\t\t\t// If we're configured to push to history OR the history\n\t\t\t// API is not available.\n\t\t\tif( config.history ) {\n\t\t\t\twindow.location.hash = hash;\n\t\t\t}\n\t\t\t// If we're configured to reflect the current slide in the\n\t\t\t// URL without pushing to history.\n\t\t\telse if( config.hash ) {\n\t\t\t\t// If the hash is empty, don't add it to the URL\n\t\t\t\tif( hash === '/' ) {\n\t\t\t\t\tthis.debouncedReplaceState( window.location.pathname + window.location.search );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tthis.debouncedReplaceState( '#' + hash );\n\t\t\t\t}\n\t\t\t}\n\t\t\t// UPDATE: The below nuking of all hash changes breaks\n\t\t\t// anchors on pages where reveal.js is running. Removed\n\t\t\t// in 4.0. Why was it here in the first place? ¯\\_(ツ)_/¯\n\t\t\t//\n\t\t\t// If history and hash are both disabled, a hash may still\n\t\t\t// be added to the URL by clicking on a href with a hash\n\t\t\t// target. Counter this by always removing the hash.\n\t\t\t// else {\n\t\t\t// \twindow.history.replaceState( null, null, window.location.pathname + window.location.search );\n\t\t\t// }\n\n\t\t}\n\n\t}\n\n\treplaceState( url ) {\n\n\t\twindow.history.replaceState( null, null, url );\n\t\tthis.replaceStateTimestamp = Date.now();\n\n\t}\n\n\tdebouncedReplaceState( url ) {\n\n\t\tclearTimeout( this.replaceStateTimeout );\n\n\t\tif( Date.now() - this.replaceStateTimestamp > this.MAX_REPLACE_STATE_FREQUENCY ) {\n\t\t\tthis.replaceState( url );\n\t\t}\n\t\telse {\n\t\t\tthis.replaceStateTimeout = setTimeout( () => this.replaceState( url ), this.MAX_REPLACE_STATE_FREQUENCY );\n\t\t}\n\n\t}\n\n\t/**\n\t * Return a hash URL that will resolve to the given slide location.\n\t *\n\t * @param {HTMLElement} [slide=currentSlide] The slide to link to\n\t */\n\tgetHash( slide ) {\n\n\t\tlet url = '/';\n\n\t\t// Attempt to create a named link based on the slide's ID\n\t\tlet s = slide || this.Reveal.getCurrentSlide();\n\t\tlet id = s ? s.getAttribute( 'id' ) : null;\n\t\tif( id ) {\n\t\t\tid = encodeURIComponent( id );\n\t\t}\n\n\t\tlet index = this.Reveal.getIndices( slide );\n\t\tif( !this.Reveal.getConfig().fragmentInURL ) {\n\t\t\tindex.f = undefined;\n\t\t}\n\n\t\t// If the current slide has an ID, use that as a named link,\n\t\t// but we don't support named links with a fragment index\n\t\tif( typeof id === 'string' && id.length ) {\n\t\t\turl = '/' + id;\n\n\t\t\t// If there is also a fragment, append that at the end\n\t\t\t// of the named link, like: #/named-link/2\n\t\t\tif( index.f >= 0 ) url += '/' + index.f;\n\t\t}\n\t\t// Otherwise use the /h/v index\n\t\telse {\n\t\t\tlet hashIndexBase = this.Reveal.getConfig().hashOneBasedIndex ? 1 : 0;\n\t\t\tif( index.h > 0 || index.v > 0 || index.f >= 0 ) url += index.h + hashIndexBase;\n\t\t\tif( index.v > 0 || index.f >= 0 ) url += '/' + (index.v + hashIndexBase );\n\t\t\tif( index.f >= 0 ) url += '/' + index.f;\n\t\t}\n\n\t\treturn url;\n\n\t}\n\n\t/**\n\t * Handler for the window level 'hashchange' event.\n\t *\n\t * @param {object} [event]\n\t */\n\tonWindowHashChange( event ) {\n\n\t\tthis.readURL();\n\n\t}\n\n}","import { queryAll } from '../utils/util.js'\nimport { isAndroid } from '../utils/device.js'\n\n/**\n * Manages our presentation controls. This includes both\n * the built-in control arrows as well as event monitoring\n * of any elements within the presentation with either of the\n * following helper classes:\n * - .navigate-up\n * - .navigate-right\n * - .navigate-down\n * - .navigate-left\n * - .navigate-next\n * - .navigate-prev\n */\nexport default class Controls {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t\tthis.onNavigateLeftClicked = this.onNavigateLeftClicked.bind( this );\n\t\tthis.onNavigateRightClicked = this.onNavigateRightClicked.bind( this );\n\t\tthis.onNavigateUpClicked = this.onNavigateUpClicked.bind( this );\n\t\tthis.onNavigateDownClicked = this.onNavigateDownClicked.bind( this );\n\t\tthis.onNavigatePrevClicked = this.onNavigatePrevClicked.bind( this );\n\t\tthis.onNavigateNextClicked = this.onNavigateNextClicked.bind( this );\n\n\t}\n\n\trender() {\n\n\t\tconst rtl = this.Reveal.getConfig().rtl;\n\t\tconst revealElement = this.Reveal.getRevealElement();\n\n\t\tthis.element = document.createElement( 'aside' );\n\t\tthis.element.className = 'controls';\n\t\tthis.element.innerHTML =\n\t\t\t`<button class=\"navigate-left\" aria-label=\"${ rtl ? 'next slide' : 'previous slide' }\"><div class=\"controls-arrow\"></div></button>\n\t\t\t<button class=\"navigate-right\" aria-label=\"${ rtl ? 'previous slide' : 'next slide' }\"><div class=\"controls-arrow\"></div></button>\n\t\t\t<button class=\"navigate-up\" aria-label=\"above slide\"><div class=\"controls-arrow\"></div></button>\n\t\t\t<button class=\"navigate-down\" aria-label=\"below slide\"><div class=\"controls-arrow\"></div></button>`;\n\n\t\tthis.Reveal.getRevealElement().appendChild( this.element );\n\n\t\t// There can be multiple instances of controls throughout the page\n\t\tthis.controlsLeft = queryAll( revealElement, '.navigate-left' );\n\t\tthis.controlsRight = queryAll( revealElement, '.navigate-right' );\n\t\tthis.controlsUp = queryAll( revealElement, '.navigate-up' );\n\t\tthis.controlsDown = queryAll( revealElement, '.navigate-down' );\n\t\tthis.controlsPrev = queryAll( revealElement, '.navigate-prev' );\n\t\tthis.controlsNext = queryAll( revealElement, '.navigate-next' );\n\n\t\t// The left, right and down arrows in the standard reveal.js controls\n\t\tthis.controlsRightArrow = this.element.querySelector( '.navigate-right' );\n\t\tthis.controlsLeftArrow = this.element.querySelector( '.navigate-left' );\n\t\tthis.controlsDownArrow = this.element.querySelector( '.navigate-down' );\n\n\t}\n\n\t/**\n\t * Called when the reveal.js config is updated.\n\t */\n\tconfigure( config, oldConfig ) {\n\n\t\tthis.element.style.display = config.controls ? 'block' : 'none';\n\n\t\tthis.element.setAttribute( 'data-controls-layout', config.controlsLayout );\n\t\tthis.element.setAttribute( 'data-controls-back-arrows', config.controlsBackArrows );\n\n\t}\n\n\tbind() {\n\n\t\t// Listen to both touch and click events, in case the device\n\t\t// supports both\n\t\tlet pointerEvents = [ 'touchstart', 'click' ];\n\n\t\t// Only support touch for Android, fixes double navigations in\n\t\t// stock browser\n\t\tif( isAndroid ) {\n\t\t\tpointerEvents = [ 'touchstart' ];\n\t\t}\n\n\t\tpointerEvents.forEach( eventName => {\n\t\t\tthis.controlsLeft.forEach( el => el.addEventListener( eventName, this.onNavigateLeftClicked, false ) );\n\t\t\tthis.controlsRight.forEach( el => el.addEventListener( eventName, this.onNavigateRightClicked, false ) );\n\t\t\tthis.controlsUp.forEach( el => el.addEventListener( eventName, this.onNavigateUpClicked, false ) );\n\t\t\tthis.controlsDown.forEach( el => el.addEventListener( eventName, this.onNavigateDownClicked, false ) );\n\t\t\tthis.controlsPrev.forEach( el => el.addEventListener( eventName, this.onNavigatePrevClicked, false ) );\n\t\t\tthis.controlsNext.forEach( el => el.addEventListener( eventName, this.onNavigateNextClicked, false ) );\n\t\t} );\n\n\t}\n\n\tunbind() {\n\n\t\t[ 'touchstart', 'click' ].forEach( eventName => {\n\t\t\tthis.controlsLeft.forEach( el => el.removeEventListener( eventName, this.onNavigateLeftClicked, false ) );\n\t\t\tthis.controlsRight.forEach( el => el.removeEventListener( eventName, this.onNavigateRightClicked, false ) );\n\t\t\tthis.controlsUp.forEach( el => el.removeEventListener( eventName, this.onNavigateUpClicked, false ) );\n\t\t\tthis.controlsDown.forEach( el => el.removeEventListener( eventName, this.onNavigateDownClicked, false ) );\n\t\t\tthis.controlsPrev.forEach( el => el.removeEventListener( eventName, this.onNavigatePrevClicked, false ) );\n\t\t\tthis.controlsNext.forEach( el => el.removeEventListener( eventName, this.onNavigateNextClicked, false ) );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Updates the state of all control/navigation arrows.\n\t */\n\tupdate() {\n\n\t\tlet routes = this.Reveal.availableRoutes();\n\n\t\t// Remove the 'enabled' class from all directions\n\t\t[...this.controlsLeft, ...this.controlsRight, ...this.controlsUp, ...this.controlsDown, ...this.controlsPrev, ...this.controlsNext].forEach( node => {\n\t\t\tnode.classList.remove( 'enabled', 'fragmented' );\n\n\t\t\t// Set 'disabled' attribute on all directions\n\t\t\tnode.setAttribute( 'disabled', 'disabled' );\n\t\t} );\n\n\t\t// Add the 'enabled' class to the available routes; remove 'disabled' attribute to enable buttons\n\t\tif( routes.left ) this.controlsLeft.forEach( el => { el.classList.add( 'enabled' ); el.removeAttribute( 'disabled' ); } );\n\t\tif( routes.right ) this.controlsRight.forEach( el => { el.classList.add( 'enabled' ); el.removeAttribute( 'disabled' ); } );\n\t\tif( routes.up ) this.controlsUp.forEach( el => { el.classList.add( 'enabled' ); el.removeAttribute( 'disabled' ); } );\n\t\tif( routes.down ) this.controlsDown.forEach( el => { el.classList.add( 'enabled' ); el.removeAttribute( 'disabled' ); } );\n\n\t\t// Prev/next buttons\n\t\tif( routes.left || routes.up ) this.controlsPrev.forEach( el => { el.classList.add( 'enabled' ); el.removeAttribute( 'disabled' ); } );\n\t\tif( routes.right || routes.down ) this.controlsNext.forEach( el => { el.classList.add( 'enabled' ); el.removeAttribute( 'disabled' ); } );\n\n\t\t// Highlight fragment directions\n\t\tlet currentSlide = this.Reveal.getCurrentSlide();\n\t\tif( currentSlide ) {\n\n\t\t\tlet fragmentsRoutes = this.Reveal.fragments.availableRoutes();\n\n\t\t\t// Always apply fragment decorator to prev/next buttons\n\t\t\tif( fragmentsRoutes.prev ) this.controlsPrev.forEach( el => { el.classList.add( 'fragmented', 'enabled' ); el.removeAttribute( 'disabled' ); } );\n\t\t\tif( fragmentsRoutes.next ) this.controlsNext.forEach( el => { el.classList.add( 'fragmented', 'enabled' ); el.removeAttribute( 'disabled' ); } );\n\n\t\t\t// Apply fragment decorators to directional buttons based on\n\t\t\t// what slide axis they are in\n\t\t\tif( this.Reveal.isVerticalSlide( currentSlide ) ) {\n\t\t\t\tif( fragmentsRoutes.prev ) this.controlsUp.forEach( el => { el.classList.add( 'fragmented', 'enabled' ); el.removeAttribute( 'disabled' ); } );\n\t\t\t\tif( fragmentsRoutes.next ) this.controlsDown.forEach( el => { el.classList.add( 'fragmented', 'enabled' ); el.removeAttribute( 'disabled' ); } );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif( fragmentsRoutes.prev ) this.controlsLeft.forEach( el => { el.classList.add( 'fragmented', 'enabled' ); el.removeAttribute( 'disabled' ); } );\n\t\t\t\tif( fragmentsRoutes.next ) this.controlsRight.forEach( el => { el.classList.add( 'fragmented', 'enabled' ); el.removeAttribute( 'disabled' ); } );\n\t\t\t}\n\n\t\t}\n\n\t\tif( this.Reveal.getConfig().controlsTutorial ) {\n\n\t\t\tlet indices = this.Reveal.getIndices();\n\n\t\t\t// Highlight control arrows with an animation to ensure\n\t\t\t// that the viewer knows how to navigate\n\t\t\tif( !this.Reveal.hasNavigatedVertically() && routes.down ) {\n\t\t\t\tthis.controlsDownArrow.classList.add( 'highlight' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.controlsDownArrow.classList.remove( 'highlight' );\n\n\t\t\t\tif( this.Reveal.getConfig().rtl ) {\n\n\t\t\t\t\tif( !this.Reveal.hasNavigatedHorizontally() && routes.left && indices.v === 0 ) {\n\t\t\t\t\t\tthis.controlsLeftArrow.classList.add( 'highlight' );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tthis.controlsLeftArrow.classList.remove( 'highlight' );\n\t\t\t\t\t}\n\n\t\t\t\t} else {\n\n\t\t\t\t\tif( !this.Reveal.hasNavigatedHorizontally() && routes.right && indices.v === 0 ) {\n\t\t\t\t\t\tthis.controlsRightArrow.classList.add( 'highlight' );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tthis.controlsRightArrow.classList.remove( 'highlight' );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tdestroy() {\n\n\t\tthis.unbind();\n\t\tthis.element.remove();\n\n\t}\n\n\t/**\n\t * Event handlers for navigation control buttons.\n\t */\n\tonNavigateLeftClicked( event ) {\n\n\t\tevent.preventDefault();\n\t\tthis.Reveal.onUserInput();\n\n\t\tif( this.Reveal.getConfig().navigationMode === 'linear' ) {\n\t\t\tthis.Reveal.prev();\n\t\t}\n\t\telse {\n\t\t\tthis.Reveal.left();\n\t\t}\n\n\t}\n\n\tonNavigateRightClicked( event ) {\n\n\t\tevent.preventDefault();\n\t\tthis.Reveal.onUserInput();\n\n\t\tif( this.Reveal.getConfig().navigationMode === 'linear' ) {\n\t\t\tthis.Reveal.next();\n\t\t}\n\t\telse {\n\t\t\tthis.Reveal.right();\n\t\t}\n\n\t}\n\n\tonNavigateUpClicked( event ) {\n\n\t\tevent.preventDefault();\n\t\tthis.Reveal.onUserInput();\n\n\t\tthis.Reveal.up();\n\n\t}\n\n\tonNavigateDownClicked( event ) {\n\n\t\tevent.preventDefault();\n\t\tthis.Reveal.onUserInput();\n\n\t\tthis.Reveal.down();\n\n\t}\n\n\tonNavigatePrevClicked( event ) {\n\n\t\tevent.preventDefault();\n\t\tthis.Reveal.onUserInput();\n\n\t\tthis.Reveal.prev();\n\n\t}\n\n\tonNavigateNextClicked( event ) {\n\n\t\tevent.preventDefault();\n\t\tthis.Reveal.onUserInput();\n\n\t\tthis.Reveal.next();\n\n\t}\n\n\n}","/**\n * Creates a visual progress bar for the presentation.\n */\nexport default class Progress {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t\tthis.onProgressClicked = this.onProgressClicked.bind( this );\n\n\t}\n\n\trender() {\n\n\t\tthis.element = document.createElement( 'div' );\n\t\tthis.element.className = 'progress';\n\t\tthis.Reveal.getRevealElement().appendChild( this.element );\n\n\t\tthis.bar = document.createElement( 'span' );\n\t\tthis.element.appendChild( this.bar );\n\n\t}\n\n\t/**\n\t * Called when the reveal.js config is updated.\n\t */\n\tconfigure( config, oldConfig ) {\n\n\t\tthis.element.style.display = config.progress ? 'block' : 'none';\n\n\t}\n\n\tbind() {\n\n\t\tif( this.Reveal.getConfig().progress && this.element ) {\n\t\t\tthis.element.addEventListener( 'click', this.onProgressClicked, false );\n\t\t}\n\n\t}\n\n\tunbind() {\n\n\t\tif ( this.Reveal.getConfig().progress && this.element ) {\n\t\t\tthis.element.removeEventListener( 'click', this.onProgressClicked, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the progress bar to reflect the current slide.\n\t */\n\tupdate() {\n\n\t\t// Update progress if enabled\n\t\tif( this.Reveal.getConfig().progress && this.bar ) {\n\n\t\t\tlet scale = this.Reveal.getProgress();\n\n\t\t\t// Don't fill the progress bar if there's only one slide\n\t\t\tif( this.Reveal.getTotalSlides() < 2 ) {\n\t\t\t\tscale = 0;\n\t\t\t}\n\n\t\t\tthis.bar.style.transform = 'scaleX('+ scale +')';\n\n\t\t}\n\n\t}\n\n\tgetMaxWidth() {\n\n\t\treturn this.Reveal.getRevealElement().offsetWidth;\n\n\t}\n\n\t/**\n\t * Clicking on the progress bar results in a navigation to the\n\t * closest approximate horizontal slide using this equation:\n\t *\n\t * ( clickX / presentationWidth ) * numberOfSlides\n\t *\n\t * @param {object} event\n\t */\n\tonProgressClicked( event ) {\n\n\t\tthis.Reveal.onUserInput( event );\n\n\t\tevent.preventDefault();\n\n\t\tlet slides = this.Reveal.getSlides();\n\t\tlet slidesTotal = slides.length;\n\t\tlet slideIndex = Math.floor( ( event.clientX / this.getMaxWidth() ) * slidesTotal );\n\n\t\tif( this.Reveal.getConfig().rtl ) {\n\t\t\tslideIndex = slidesTotal - slideIndex;\n\t\t}\n\n\t\tlet targetIndices = this.Reveal.getIndices(slides[slideIndex]);\n\t\tthis.Reveal.slide( targetIndices.h, targetIndices.v );\n\n\t}\n\n\tdestroy() {\n\n\t\tthis.element.remove();\n\n\t}\n\n}","/**\n * Handles hiding of the pointer/cursor when inactive.\n */\nexport default class Pointer {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t\t// Throttles mouse wheel navigation\n\t\tthis.lastMouseWheelStep = 0;\n\n\t\t// Is the mouse pointer currently hidden from view\n\t\tthis.cursorHidden = false;\n\n\t\t// Timeout used to determine when the cursor is inactive\n\t\tthis.cursorInactiveTimeout = 0;\n\n\t\tthis.onDocumentCursorActive = this.onDocumentCursorActive.bind( this );\n\t\tthis.onDocumentMouseScroll = this.onDocumentMouseScroll.bind( this );\n\n\t}\n\n\t/**\n\t * Called when the reveal.js config is updated.\n\t */\n\tconfigure( config, oldConfig ) {\n\n\t\tif( config.mouseWheel ) {\n\t\t\tdocument.addEventListener( 'wheel', this.onDocumentMouseScroll, false );\n\t\t}\n\t\telse {\n\t\t\tdocument.removeEventListener( 'wheel', this.onDocumentMouseScroll, false );\n\t\t}\n\n\t\t// Auto-hide the mouse pointer when its inactive\n\t\tif( config.hideInactiveCursor ) {\n\t\t\tdocument.addEventListener( 'mousemove', this.onDocumentCursorActive, false );\n\t\t\tdocument.addEventListener( 'mousedown', this.onDocumentCursorActive, false );\n\t\t}\n\t\telse {\n\t\t\tthis.showCursor();\n\n\t\t\tdocument.removeEventListener( 'mousemove', this.onDocumentCursorActive, false );\n\t\t\tdocument.removeEventListener( 'mousedown', this.onDocumentCursorActive, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Shows the mouse pointer after it has been hidden with\n\t * #hideCursor.\n\t */\n\tshowCursor() {\n\n\t\tif( this.cursorHidden ) {\n\t\t\tthis.cursorHidden = false;\n\t\t\tthis.Reveal.getRevealElement().style.cursor = '';\n\t\t}\n\n\t}\n\n\t/**\n\t * Hides the mouse pointer when it's on top of the .reveal\n\t * container.\n\t */\n\thideCursor() {\n\n\t\tif( this.cursorHidden === false ) {\n\t\t\tthis.cursorHidden = true;\n\t\t\tthis.Reveal.getRevealElement().style.cursor = 'none';\n\t\t}\n\n\t}\n\n\tdestroy() {\n\n\t\tthis.showCursor();\n\n\t\tdocument.removeEventListener( 'wheel', this.onDocumentMouseScroll, false );\n\t\tdocument.removeEventListener( 'mousemove', this.onDocumentCursorActive, false );\n\t\tdocument.removeEventListener( 'mousedown', this.onDocumentCursorActive, false );\n\n\t}\n\n\t/**\n\t * Called whenever there is mouse input at the document level\n\t * to determine if the cursor is active or not.\n\t *\n\t * @param {object} event\n\t */\n\tonDocumentCursorActive( event ) {\n\n\t\tthis.showCursor();\n\n\t\tclearTimeout( this.cursorInactiveTimeout );\n\n\t\tthis.cursorInactiveTimeout = setTimeout( this.hideCursor.bind( this ), this.Reveal.getConfig().hideCursorTime );\n\n\t}\n\n\t/**\n\t * Handles mouse wheel scrolling, throttled to avoid skipping\n\t * multiple slides.\n\t *\n\t * @param {object} event\n\t */\n\tonDocumentMouseScroll( event ) {\n\n\t\tif( Date.now() - this.lastMouseWheelStep > 1000 ) {\n\n\t\t\tthis.lastMouseWheelStep = Date.now();\n\n\t\t\tlet delta = event.detail || -event.wheelDelta;\n\t\t\tif( delta > 0 ) {\n\t\t\t\tthis.Reveal.next();\n\t\t\t}\n\t\t\telse if( delta < 0 ) {\n\t\t\t\tthis.Reveal.prev();\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}\n","/**\n * Loads a JavaScript file from the given URL and executes it.\n *\n * @param {string} url Address of the .js file to load\n * @param {function} callback Method to invoke when the script\n * has loaded and executed\n */\nexport const loadScript = ( url, callback ) => {\n\n\tconst script = document.createElement( 'script' );\n\tscript.type = 'text/javascript';\n\tscript.async = false;\n\tscript.defer = false;\n\tscript.src = url;\n\n\tif( typeof callback === 'function' ) {\n\n\t\t// Success callback\n\t\tscript.onload = script.onreadystatechange = event => {\n\t\t\tif( event.type === 'load' || /loaded|complete/.test( script.readyState ) ) {\n\n\t\t\t\t// Kill event listeners\n\t\t\t\tscript.onload = script.onreadystatechange = script.onerror = null;\n\n\t\t\t\tcallback();\n\n\t\t\t}\n\t\t};\n\n\t\t// Error callback\n\t\tscript.onerror = err => {\n\n\t\t\t// Kill event listeners\n\t\t\tscript.onload = script.onreadystatechange = script.onerror = null;\n\n\t\t\tcallback( new Error( 'Failed loading script: ' + script.src + '\\n' + err ) );\n\n\t\t};\n\n\t}\n\n\t// Append the script at the end of <head>\n\tconst head = document.querySelector( 'head' );\n\thead.insertBefore( script, head.lastChild );\n\n}","import { loadScript } from '../utils/loader.js'\n\n/**\n * Manages loading and registering of reveal.js plugins.\n */\nexport default class Plugins {\n\n\tconstructor( reveal ) {\n\n\t\tthis.Reveal = reveal;\n\n\t\t// Flags our current state (idle -> loading -> loaded)\n\t\tthis.state = 'idle';\n\n\t\t// An id:instance map of currently registered plugins\n\t\tthis.registeredPlugins = {};\n\n\t\tthis.asyncDependencies = [];\n\n\t}\n\n\t/**\n\t * Loads reveal.js dependencies, registers and\n\t * initializes plugins.\n\t *\n\t * Plugins are direct references to a reveal.js plugin\n\t * object that we register and initialize after any\n\t * synchronous dependencies have loaded.\n\t *\n\t * Dependencies are defined via the 'dependencies' config\n\t * option and will be loaded prior to starting reveal.js.\n\t * Some dependencies may have an 'async' flag, if so they\n\t * will load after reveal.js has been started up.\n\t */\n\tload( plugins, dependencies ) {\n\n\t\tthis.state = 'loading';\n\n\t\tplugins.forEach( this.registerPlugin.bind( this ) );\n\n\t\treturn new Promise( resolve => {\n\n\t\t\tlet scripts = [],\n\t\t\t\tscriptsToLoad = 0;\n\n\t\t\tdependencies.forEach( s => {\n\t\t\t\t// Load if there's no condition or the condition is truthy\n\t\t\t\tif( !s.condition || s.condition() ) {\n\t\t\t\t\tif( s.async ) {\n\t\t\t\t\t\tthis.asyncDependencies.push( s );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tscripts.push( s );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\tif( scripts.length ) {\n\t\t\t\tscriptsToLoad = scripts.length;\n\n\t\t\t\tconst scriptLoadedCallback = (s) => {\n\t\t\t\t\tif( s && typeof s.callback === 'function' ) s.callback();\n\n\t\t\t\t\tif( --scriptsToLoad === 0 ) {\n\t\t\t\t\t\tthis.initPlugins().then( resolve );\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t// Load synchronous scripts\n\t\t\t\tscripts.forEach( s => {\n\t\t\t\t\tif( typeof s.id === 'string' ) {\n\t\t\t\t\t\tthis.registerPlugin( s );\n\t\t\t\t\t\tscriptLoadedCallback( s );\n\t\t\t\t\t}\n\t\t\t\t\telse if( typeof s.src === 'string' ) {\n\t\t\t\t\t\tloadScript( s.src, () => scriptLoadedCallback(s) );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tconsole.warn( 'Unrecognized plugin format', s );\n\t\t\t\t\t\tscriptLoadedCallback();\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.initPlugins().then( resolve );\n\t\t\t}\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Initializes our plugins and waits for them to be ready\n\t * before proceeding.\n\t */\n\tinitPlugins() {\n\n\t\treturn new Promise( resolve => {\n\n\t\t\tlet pluginValues = Object.values( this.registeredPlugins );\n\t\t\tlet pluginsToInitialize = pluginValues.length;\n\n\t\t\t// If there are no plugins, skip this step\n\t\t\tif( pluginsToInitialize === 0 ) {\n\t\t\t\tthis.loadAsync().then( resolve );\n\t\t\t}\n\t\t\t// ... otherwise initialize plugins\n\t\t\telse {\n\n\t\t\t\tlet initNextPlugin;\n\n\t\t\t\tlet afterPlugInitialized = () => {\n\t\t\t\t\tif( --pluginsToInitialize === 0 ) {\n\t\t\t\t\t\tthis.loadAsync().then( resolve );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tinitNextPlugin();\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\tlet i = 0;\n\n\t\t\t\t// Initialize plugins serially\n\t\t\t\tinitNextPlugin = () => {\n\n\t\t\t\t\tlet plugin = pluginValues[i++];\n\n\t\t\t\t\t// If the plugin has an 'init' method, invoke it\n\t\t\t\t\tif( typeof plugin.init === 'function' ) {\n\t\t\t\t\t\tlet promise = plugin.init( this.Reveal );\n\n\t\t\t\t\t\t// If the plugin returned a Promise, wait for it\n\t\t\t\t\t\tif( promise && typeof promise.then === 'function' ) {\n\t\t\t\t\t\t\tpromise.then( afterPlugInitialized );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tafterPlugInitialized();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tafterPlugInitialized();\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t\tinitNextPlugin();\n\n\t\t\t}\n\n\t\t} )\n\n\t}\n\n\t/**\n\t * Loads all async reveal.js dependencies.\n\t */\n\tloadAsync() {\n\n\t\tthis.state = 'loaded';\n\n\t\tif( this.asyncDependencies.length ) {\n\t\t\tthis.asyncDependencies.forEach( s => {\n\t\t\t\tloadScript( s.src, s.callback );\n\t\t\t} );\n\t\t}\n\n\t\treturn Promise.resolve();\n\n\t}\n\n\t/**\n\t * Registers a new plugin with this reveal.js instance.\n\t *\n\t * reveal.js waits for all registered plugins to initialize\n\t * before considering itself ready, as long as the plugin\n\t * is registered before calling `Reveal.initialize()`.\n\t */\n\tregisterPlugin( plugin ) {\n\n\t\t// Backwards compatibility to make reveal.js ~3.9.0\n\t\t// plugins work with reveal.js 4.0.0\n\t\tif( arguments.length === 2 && typeof arguments[0] === 'string' ) {\n\t\t\tplugin = arguments[1];\n\t\t\tplugin.id = arguments[0];\n\t\t}\n\t\t// Plugin can optionally be a function which we call\n\t\t// to create an instance of the plugin\n\t\telse if( typeof plugin === 'function' ) {\n\t\t\tplugin = plugin();\n\t\t}\n\n\t\tlet id = plugin.id;\n\n\t\tif( typeof id !== 'string' ) {\n\t\t\tconsole.warn( 'Unrecognized plugin format; can\\'t find plugin.id', plugin );\n\t\t}\n\t\telse if( this.registeredPlugins[id] === undefined ) {\n\t\t\tthis.registeredPlugins[id] = plugin;\n\n\t\t\t// If a plugin is registered after reveal.js is loaded,\n\t\t\t// initialize it right away\n\t\t\tif( this.state === 'loaded' && typeof plugin.init === 'function' ) {\n\t\t\t\tplugin.init( this.Reveal );\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\tconsole.warn( 'reveal.js: \"'+ id +'\" plugin has already been registered' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if a specific plugin has been registered.\n\t *\n\t * @param {String} id Unique plugin identifier\n\t */\n\thasPlugin( id ) {\n\n\t\treturn !!this.registeredPlugins[id];\n\n\t}\n\n\t/**\n\t * Returns the specific plugin instance, if a plugin\n\t * with the given ID has been registered.\n\t *\n\t * @param {String} id Unique plugin identifier\n\t */\n\tgetPlugin( id ) {\n\n\t\treturn this.registeredPlugins[id];\n\n\t}\n\n\tgetRegisteredPlugins() {\n\n\t\treturn this.registeredPlugins;\n\n\t}\n\n\tdestroy() {\n\n\t\tObject.values( this.registeredPlugins ).forEach( plugin => {\n\t\t\tif( typeof plugin.destroy === 'function' ) {\n\t\t\t\tplugin.destroy();\n\t\t\t}\n\t\t} );\n\n\t\tthis.registeredPlugins = {};\n\t\tthis.asyncDependencies = [];\n\n\t}\n\n}\n","import { isAndroid } from '../utils/device.js'\nimport { matches } from '../utils/util.js'\n\nconst SWIPE_THRESHOLD = 40;\n\n/**\n * Controls all touch interactions and navigations for\n * a presentation.\n */\nexport default class Touch {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t\t// Holds information about the currently ongoing touch interaction\n\t\tthis.touchStartX = 0;\n\t\tthis.touchStartY = 0;\n\t\tthis.touchStartCount = 0;\n\t\tthis.touchCaptured = false;\n\n\t\tthis.onPointerDown = this.onPointerDown.bind( this );\n\t\tthis.onPointerMove = this.onPointerMove.bind( this );\n\t\tthis.onPointerUp = this.onPointerUp.bind( this );\n\t\tthis.onTouchStart = this.onTouchStart.bind( this );\n\t\tthis.onTouchMove = this.onTouchMove.bind( this );\n\t\tthis.onTouchEnd = this.onTouchEnd.bind( this );\n\n\t}\n\n\t/**\n\t *\n\t */\n\tbind() {\n\n\t\tlet revealElement = this.Reveal.getRevealElement();\n\n\t\tif( 'onpointerdown' in window ) {\n\t\t\t// Use W3C pointer events\n\t\t\trevealElement.addEventListener( 'pointerdown', this.onPointerDown, false );\n\t\t\trevealElement.addEventListener( 'pointermove', this.onPointerMove, false );\n\t\t\trevealElement.addEventListener( 'pointerup', this.onPointerUp, false );\n\t\t}\n\t\telse if( window.navigator.msPointerEnabled ) {\n\t\t\t// IE 10 uses prefixed version of pointer events\n\t\t\trevealElement.addEventListener( 'MSPointerDown', this.onPointerDown, false );\n\t\t\trevealElement.addEventListener( 'MSPointerMove', this.onPointerMove, false );\n\t\t\trevealElement.addEventListener( 'MSPointerUp', this.onPointerUp, false );\n\t\t}\n\t\telse {\n\t\t\t// Fall back to touch events\n\t\t\trevealElement.addEventListener( 'touchstart', this.onTouchStart, false );\n\t\t\trevealElement.addEventListener( 'touchmove', this.onTouchMove, false );\n\t\t\trevealElement.addEventListener( 'touchend', this.onTouchEnd, false );\n\t\t}\n\n\t}\n\n\t/**\n\t *\n\t */\n\tunbind() {\n\n\t\tlet revealElement = this.Reveal.getRevealElement();\n\n\t\trevealElement.removeEventListener( 'pointerdown', this.onPointerDown, false );\n\t\trevealElement.removeEventListener( 'pointermove', this.onPointerMove, false );\n\t\trevealElement.removeEventListener( 'pointerup', this.onPointerUp, false );\n\n\t\trevealElement.removeEventListener( 'MSPointerDown', this.onPointerDown, false );\n\t\trevealElement.removeEventListener( 'MSPointerMove', this.onPointerMove, false );\n\t\trevealElement.removeEventListener( 'MSPointerUp', this.onPointerUp, false );\n\n\t\trevealElement.removeEventListener( 'touchstart', this.onTouchStart, false );\n\t\trevealElement.removeEventListener( 'touchmove', this.onTouchMove, false );\n\t\trevealElement.removeEventListener( 'touchend', this.onTouchEnd, false );\n\n\t}\n\n\t/**\n\t * Checks if the target element prevents the triggering of\n\t * swipe navigation.\n\t */\n\tisSwipePrevented( target ) {\n\n\t\t// Prevent accidental swipes when scrubbing timelines\n\t\tif( matches( target, 'video, audio' ) ) return true;\n\n\t\twhile( target && typeof target.hasAttribute === 'function' ) {\n\t\t\tif( target.hasAttribute( 'data-prevent-swipe' ) ) return true;\n\t\t\ttarget = target.parentNode;\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\t/**\n\t * Handler for the 'touchstart' event, enables support for\n\t * swipe and pinch gestures.\n\t *\n\t * @param {object} event\n\t */\n\tonTouchStart( event ) {\n\n\t\tif( this.isSwipePrevented( event.target ) ) return true;\n\n\t\tthis.touchStartX = event.touches[0].clientX;\n\t\tthis.touchStartY = event.touches[0].clientY;\n\t\tthis.touchStartCount = event.touches.length;\n\n\t}\n\n\t/**\n\t * Handler for the 'touchmove' event.\n\t *\n\t * @param {object} event\n\t */\n\tonTouchMove( event ) {\n\n\t\tif( this.isSwipePrevented( event.target ) ) return true;\n\n\t\tlet config = this.Reveal.getConfig();\n\n\t\t// Each touch should only trigger one action\n\t\tif( !this.touchCaptured ) {\n\t\t\tthis.Reveal.onUserInput( event );\n\n\t\t\tlet currentX = event.touches[0].clientX;\n\t\t\tlet currentY = event.touches[0].clientY;\n\n\t\t\t// There was only one touch point, look for a swipe\n\t\t\tif( event.touches.length === 1 && this.touchStartCount !== 2 ) {\n\n\t\t\t\tlet availableRoutes = this.Reveal.availableRoutes({ includeFragments: true });\n\n\t\t\t\tlet deltaX = currentX - this.touchStartX,\n\t\t\t\t\tdeltaY = currentY - this.touchStartY;\n\n\t\t\t\tif( deltaX > SWIPE_THRESHOLD && Math.abs( deltaX ) > Math.abs( deltaY ) ) {\n\t\t\t\t\tthis.touchCaptured = true;\n\t\t\t\t\tif( config.navigationMode === 'linear' ) {\n\t\t\t\t\t\tif( config.rtl ) {\n\t\t\t\t\t\t\tthis.Reveal.next();\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tthis.Reveal.prev();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tthis.Reveal.left();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse if( deltaX < -SWIPE_THRESHOLD && Math.abs( deltaX ) > Math.abs( deltaY ) ) {\n\t\t\t\t\tthis.touchCaptured = true;\n\t\t\t\t\tif( config.navigationMode === 'linear' ) {\n\t\t\t\t\t\tif( config.rtl ) {\n\t\t\t\t\t\t\tthis.Reveal.prev();\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tthis.Reveal.next();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tthis.Reveal.right();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse if( deltaY > SWIPE_THRESHOLD && availableRoutes.up ) {\n\t\t\t\t\tthis.touchCaptured = true;\n\t\t\t\t\tif( config.navigationMode === 'linear' ) {\n\t\t\t\t\t\tthis.Reveal.prev();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tthis.Reveal.up();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse if( deltaY < -SWIPE_THRESHOLD && availableRoutes.down ) {\n\t\t\t\t\tthis.touchCaptured = true;\n\t\t\t\t\tif( config.navigationMode === 'linear' ) {\n\t\t\t\t\t\tthis.Reveal.next();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tthis.Reveal.down();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// If we're embedded, only block touch events if they have\n\t\t\t\t// triggered an action\n\t\t\t\tif( config.embedded ) {\n\t\t\t\t\tif( this.touchCaptured || this.Reveal.isVerticalSlide() ) {\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Not embedded? Block them all to avoid needless tossing\n\t\t\t\t// around of the viewport in iOS\n\t\t\t\telse {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\t\t// There's a bug with swiping on some Android devices unless\n\t\t// the default action is always prevented\n\t\telse if( isAndroid ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the 'touchend' event.\n\t *\n\t * @param {object} event\n\t */\n\tonTouchEnd( event ) {\n\n\t\tthis.touchCaptured = false;\n\n\t}\n\n\t/**\n\t * Convert pointer down to touch start.\n\t *\n\t * @param {object} event\n\t */\n\tonPointerDown( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" ) {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tthis.onTouchStart( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Convert pointer move to touch move.\n\t *\n\t * @param {object} event\n\t */\n\tonPointerMove( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" ) {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tthis.onTouchMove( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Convert pointer up to touch end.\n\t *\n\t * @param {object} event\n\t */\n\tonPointerUp( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" ) {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tthis.onTouchEnd( event );\n\t\t}\n\n\t}\n\n}","import { closest } from '../utils/util.js'\n\n/**\n * Manages focus when a presentation is embedded. This\n * helps us only capture keyboard from the presentation\n * a user is currently interacting with in a page where\n * multiple presentations are embedded.\n */\n\nconst STATE_FOCUS = 'focus';\nconst STATE_BLUR = 'blur';\n\nexport default class Focus {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t\tthis.onRevealPointerDown = this.onRevealPointerDown.bind( this );\n\t\tthis.onDocumentPointerDown = this.onDocumentPointerDown.bind( this );\n\n\t}\n\n\t/**\n\t * Called when the reveal.js config is updated.\n\t */\n\tconfigure( config, oldConfig ) {\n\n\t\tif( config.embedded ) {\n\t\t\tthis.blur();\n\t\t}\n\t\telse {\n\t\t\tthis.focus();\n\t\t\tthis.unbind();\n\t\t}\n\n\t}\n\n\tbind() {\n\n\t\tif( this.Reveal.getConfig().embedded ) {\n\t\t\tthis.Reveal.getRevealElement().addEventListener( 'pointerdown', this.onRevealPointerDown, false );\n\t\t}\n\n\t}\n\n\tunbind() {\n\n\t\tthis.Reveal.getRevealElement().removeEventListener( 'pointerdown', this.onRevealPointerDown, false );\n\t\tdocument.removeEventListener( 'pointerdown', this.onDocumentPointerDown, false );\n\n\t}\n\n\tfocus() {\n\n\t\tif( this.state !== STATE_FOCUS ) {\n\t\t\tthis.Reveal.getRevealElement().classList.add( 'focused' );\n\t\t\tdocument.addEventListener( 'pointerdown', this.onDocumentPointerDown, false );\n\t\t}\n\n\t\tthis.state = STATE_FOCUS;\n\n\t}\n\n\tblur() {\n\n\t\tif( this.state !== STATE_BLUR ) {\n\t\t\tthis.Reveal.getRevealElement().classList.remove( 'focused' );\n\t\t\tdocument.removeEventListener( 'pointerdown', this.onDocumentPointerDown, false );\n\t\t}\n\n\t\tthis.state = STATE_BLUR;\n\n\t}\n\n\tisFocused() {\n\n\t\treturn this.state === STATE_FOCUS;\n\n\t}\n\n\tdestroy() {\n\n\t\tthis.Reveal.getRevealElement().classList.remove( 'focused' );\n\n\t}\n\n\tonRevealPointerDown( event ) {\n\n\t\tthis.focus();\n\n\t}\n\n\tonDocumentPointerDown( event ) {\n\n\t\tlet revealElement = closest( event.target, '.reveal' );\n\t\tif( !revealElement || revealElement !== this.Reveal.getRevealElement() ) {\n\t\t\tthis.blur();\n\t\t}\n\n\t}\n\n}","/**\n * Handles the showing of speaker notes\n */\nexport default class Notes {\n\n\tconstructor( Reveal ) {\n\n\t\tthis.Reveal = Reveal;\n\n\t}\n\n\trender() {\n\n\t\tthis.element = document.createElement( 'div' );\n\t\tthis.element.className = 'speaker-notes';\n\t\tthis.element.setAttribute( 'data-prevent-swipe', '' );\n\t\tthis.element.setAttribute( 'tabindex', '0' );\n\t\tthis.Reveal.getRevealElement().appendChild( this.element );\n\n\t}\n\n\t/**\n\t * Called when the reveal.js config is updated.\n\t */\n\tconfigure( config, oldConfig ) {\n\n\t\tif( config.showNotes ) {\n\t\t\tthis.element.setAttribute( 'data-layout', typeof config.showNotes === 'string' ? config.showNotes : 'inline' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Pick up notes from the current slide and display them\n\t * to the viewer.\n\t *\n\t * @see {@link config.showNotes}\n\t */\n\tupdate() {\n\n\t\tif( this.Reveal.getConfig().showNotes &&\n\t\t\tthis.element && this.Reveal.getCurrentSlide() &&\n\t\t\t!this.Reveal.isScrollView() &&\n\t\t\t!this.Reveal.isPrintView()\n\t\t) {\n\t\t\tthis.element.innerHTML = this.getSlideNotes() || '<span class=\"notes-placeholder\">No notes on this slide.</span>';\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the visibility of the speaker notes sidebar that\n\t * is used to share annotated slides. The notes sidebar is\n\t * only visible if showNotes is true and there are notes on\n\t * one or more slides in the deck.\n\t */\n\tupdateVisibility() {\n\n\t\tif( this.Reveal.getConfig().showNotes &&\n\t\t\tthis.hasNotes() &&\n\t\t\t!this.Reveal.isScrollView() &&\n\t\t\t!this.Reveal.isPrintView()\n\t\t) {\n\t\t\tthis.Reveal.getRevealElement().classList.add( 'show-notes' );\n\t\t}\n\t\telse {\n\t\t\tthis.Reveal.getRevealElement().classList.remove( 'show-notes' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if there are speaker notes for ANY slide in the\n\t * presentation.\n\t */\n\thasNotes() {\n\n\t\treturn this.Reveal.getSlidesElement().querySelectorAll( '[data-notes], aside.notes' ).length > 0;\n\n\t}\n\n\t/**\n\t * Checks if this presentation is running inside of the\n\t * speaker notes window.\n\t *\n\t * @return {boolean}\n\t */\n\tisSpeakerNotesWindow() {\n\n\t\treturn !!window.location.search.match( /receiver/gi );\n\n\t}\n\n\t/**\n\t * Retrieves the speaker notes from a slide. Notes can be\n\t * defined in two ways:\n\t * 1. As a data-notes attribute on the slide <section>\n\t * 2. With <aside class=\"notes\"> elements inside the slide\n\t *\n\t * @param {HTMLElement} [slide=currentSlide]\n\t * @return {(string|null)}\n\t */\n\tgetSlideNotes( slide = this.Reveal.getCurrentSlide() ) {\n\n\t\t// Notes can be specified via the data-notes attribute...\n\t\tif( slide.hasAttribute( 'data-notes' ) ) {\n\t\t\treturn slide.getAttribute( 'data-notes' );\n\t\t}\n\n\t\t// ... or using <aside class=\"notes\"> elements\n\t\tlet notesElements = slide.querySelectorAll( 'aside.notes' );\n\t\tif( notesElements ) {\n\t\t\treturn Array.from(notesElements).map( notesElement => notesElement.innerHTML ).join( '\\n' );\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\tdestroy() {\n\n\t\tthis.element.remove();\n\n\t}\n\n}","/**\n * UI component that lets the use control auto-slide\n * playback via play/pause.\n */\nexport default class Playback {\n\n\t/**\n\t * @param {HTMLElement} container The component will append\n\t * itself to this\n\t * @param {function} progressCheck A method which will be\n\t * called frequently to get the current playback progress on\n\t * a range of 0-1\n\t */\n\tconstructor( container, progressCheck ) {\n\n\t\t// Cosmetics\n\t\tthis.diameter = 100;\n\t\tthis.diameter2 = this.diameter/2;\n\t\tthis.thickness = 6;\n\n\t\t// Flags if we are currently playing\n\t\tthis.playing = false;\n\n\t\t// Current progress on a 0-1 range\n\t\tthis.progress = 0;\n\n\t\t// Used to loop the animation smoothly\n\t\tthis.progressOffset = 1;\n\n\t\tthis.container = container;\n\t\tthis.progressCheck = progressCheck;\n\n\t\tthis.canvas = document.createElement( 'canvas' );\n\t\tthis.canvas.className = 'playback';\n\t\tthis.canvas.width = this.diameter;\n\t\tthis.canvas.height = this.diameter;\n\t\tthis.canvas.style.width = this.diameter2 + 'px';\n\t\tthis.canvas.style.height = this.diameter2 + 'px';\n\t\tthis.context = this.canvas.getContext( '2d' );\n\n\t\tthis.container.appendChild( this.canvas );\n\n\t\tthis.render();\n\n\t}\n\n\tsetPlaying( value ) {\n\n\t\tconst wasPlaying = this.playing;\n\n\t\tthis.playing = value;\n\n\t\t// Start repainting if we weren't already\n\t\tif( !wasPlaying && this.playing ) {\n\t\t\tthis.animate();\n\t\t}\n\t\telse {\n\t\t\tthis.render();\n\t\t}\n\n\t}\n\n\tanimate() {\n\n\t\tconst progressBefore = this.progress;\n\n\t\tthis.progress = this.progressCheck();\n\n\t\t// When we loop, offset the progress so that it eases\n\t\t// smoothly rather than immediately resetting\n\t\tif( progressBefore > 0.8 && this.progress < 0.2 ) {\n\t\t\tthis.progressOffset = this.progress;\n\t\t}\n\n\t\tthis.render();\n\n\t\tif( this.playing ) {\n\t\t\trequestAnimationFrame( this.animate.bind( this ) );\n\t\t}\n\n\t}\n\n\t/**\n\t * Renders the current progress and playback state.\n\t */\n\trender() {\n\n\t\tlet progress = this.playing ? this.progress : 0,\n\t\t\tradius = ( this.diameter2 ) - this.thickness,\n\t\t\tx = this.diameter2,\n\t\t\ty = this.diameter2,\n\t\t\ticonSize = 28;\n\n\t\t// Ease towards 1\n\t\tthis.progressOffset += ( 1 - this.progressOffset ) * 0.1;\n\n\t\tconst endAngle = ( - Math.PI / 2 ) + ( progress * ( Math.PI * 2 ) );\n\t\tconst startAngle = ( - Math.PI / 2 ) + ( this.progressOffset * ( Math.PI * 2 ) );\n\n\t\tthis.context.save();\n\t\tthis.context.clearRect( 0, 0, this.diameter, this.diameter );\n\n\t\t// Solid background color\n\t\tthis.context.beginPath();\n\t\tthis.context.arc( x, y, radius + 4, 0, Math.PI * 2, false );\n\t\tthis.context.fillStyle = 'rgba( 0, 0, 0, 0.4 )';\n\t\tthis.context.fill();\n\n\t\t// Draw progress track\n\t\tthis.context.beginPath();\n\t\tthis.context.arc( x, y, radius, 0, Math.PI * 2, false );\n\t\tthis.context.lineWidth = this.thickness;\n\t\tthis.context.strokeStyle = 'rgba( 255, 255, 255, 0.2 )';\n\t\tthis.context.stroke();\n\n\t\tif( this.playing ) {\n\t\t\t// Draw progress on top of track\n\t\t\tthis.context.beginPath();\n\t\t\tthis.context.arc( x, y, radius, startAngle, endAngle, false );\n\t\t\tthis.context.lineWidth = this.thickness;\n\t\t\tthis.context.strokeStyle = '#fff';\n\t\t\tthis.context.stroke();\n\t\t}\n\n\t\tthis.context.translate( x - ( iconSize / 2 ), y - ( iconSize / 2 ) );\n\n\t\t// Draw play/pause icons\n\t\tif( this.playing ) {\n\t\t\tthis.context.fillStyle = '#fff';\n\t\t\tthis.context.fillRect( 0, 0, iconSize / 2 - 4, iconSize );\n\t\t\tthis.context.fillRect( iconSize / 2 + 4, 0, iconSize / 2 - 4, iconSize );\n\t\t}\n\t\telse {\n\t\t\tthis.context.beginPath();\n\t\t\tthis.context.translate( 4, 0 );\n\t\t\tthis.context.moveTo( 0, 0 );\n\t\t\tthis.context.lineTo( iconSize - 4, iconSize / 2 );\n\t\t\tthis.context.lineTo( 0, iconSize );\n\t\t\tthis.context.fillStyle = '#fff';\n\t\t\tthis.context.fill();\n\t\t}\n\n\t\tthis.context.restore();\n\n\t}\n\n\ton( type, listener ) {\n\t\tthis.canvas.addEventListener( type, listener, false );\n\t}\n\n\toff( type, listener ) {\n\t\tthis.canvas.removeEventListener( type, listener, false );\n\t}\n\n\tdestroy() {\n\n\t\tthis.playing = false;\n\n\t\tif( this.canvas.parentNode ) {\n\t\t\tthis.container.removeChild( this.canvas );\n\t\t}\n\n\t}\n\n}","/**\n * The default reveal.js config object.\n */\nexport default {\n\n\t// The \"normal\" size of the presentation, aspect ratio will be preserved\n\t// when the presentation is scaled to fit different resolutions\n\twidth: 960,\n\theight: 700,\n\n\t// Factor of the display size that should remain empty around the content\n\tmargin: 0.04,\n\n\t// Bounds for smallest/largest possible scale to apply to content\n\tminScale: 0.2,\n\tmaxScale: 2.0,\n\n\t// Display presentation control arrows\n\tcontrols: true,\n\n\t// Help the user learn the controls by providing hints, for example by\n\t// bouncing the down arrow when they first encounter a vertical slide\n\tcontrolsTutorial: true,\n\n\t// Determines where controls appear, \"edges\" or \"bottom-right\"\n\tcontrolsLayout: 'bottom-right',\n\n\t// Visibility rule for backwards navigation arrows; \"faded\", \"hidden\"\n\t// or \"visible\"\n\tcontrolsBackArrows: 'faded',\n\n\t// Display a presentation progress bar\n\tprogress: true,\n\n\t// Display the page number of the current slide\n\t// - true: Show slide number\n\t// - false: Hide slide number\n\t//\n\t// Can optionally be set as a string that specifies the number formatting:\n\t// - \"h.v\":\t Horizontal . vertical slide number (default)\n\t// - \"h/v\":\t Horizontal / vertical slide number\n\t// - \"c\":\t Flattened slide number\n\t// - \"c/t\":\t Flattened slide number / total slides\n\t//\n\t// Alternatively, you can provide a function that returns the slide\n\t// number for the current slide. The function should take in a slide\n\t// object and return an array with one string [slideNumber] or\n\t// three strings [n1,delimiter,n2]. See #formatSlideNumber().\n\tslideNumber: false,\n\n\t// Can be used to limit the contexts in which the slide number appears\n\t// - \"all\": Always show the slide number\n\t// - \"print\": Only when printing to PDF\n\t// - \"speaker\": Only in the speaker view\n\tshowSlideNumber: 'all',\n\n\t// Use 1 based indexing for # links to match slide number (default is zero\n\t// based)\n\thashOneBasedIndex: false,\n\n\t// Add the current slide number to the URL hash so that reloading the\n\t// page/copying the URL will return you to the same slide\n\thash: false,\n\n\t// Flags if we should monitor the hash and change slides accordingly\n\trespondToHashChanges: true,\n\n\t// Enable support for jump-to-slide navigation shortcuts\n\tjumpToSlide: true,\n\n\t// Push each slide change to the browser history. Implies `hash: true`\n\thistory: false,\n\n\t// Enable keyboard shortcuts for navigation\n\tkeyboard: true,\n\n\t// Optional function that blocks keyboard events when retuning false\n\t//\n\t// If you set this to 'focused', we will only capture keyboard events\n\t// for embedded decks when they are in focus\n\tkeyboardCondition: null,\n\n\t// Disables the default reveal.js slide layout (scaling and centering)\n\t// so that you can use custom CSS layout\n\tdisableLayout: false,\n\n\t// Enable the slide overview mode\n\toverview: true,\n\n\t// Vertical centering of slides\n\tcenter: true,\n\n\t// Enables touch navigation on devices with touch input\n\ttouch: true,\n\n\t// Loop the presentation\n\tloop: false,\n\n\t// Change the presentation direction to be RTL\n\trtl: false,\n\n\t// Changes the behavior of our navigation directions.\n\t//\n\t// \"default\"\n\t// Left/right arrow keys step between horizontal slides, up/down\n\t// arrow keys step between vertical slides. Space key steps through\n\t// all slides (both horizontal and vertical).\n\t//\n\t// \"linear\"\n\t// Removes the up/down arrows. Left/right arrows step through all\n\t// slides (both horizontal and vertical).\n\t//\n\t// \"grid\"\n\t// When this is enabled, stepping left/right from a vertical stack\n\t// to an adjacent vertical stack will land you at the same vertical\n\t// index.\n\t//\n\t// Consider a deck with six slides ordered in two vertical stacks:\n\t// 1.1 2.1\n\t// 1.2 2.2\n\t// 1.3 2.3\n\t//\n\t// If you're on slide 1.3 and navigate right, you will normally move\n\t// from 1.3 -> 2.1. If \"grid\" is used, the same navigation takes you\n\t// from 1.3 -> 2.3.\n\tnavigationMode: 'default',\n\n\t// Randomizes the order of slides each time the presentation loads\n\tshuffle: false,\n\n\t// Turns fragments on and off globally\n\tfragments: true,\n\n\t// Flags whether to include the current fragment in the URL,\n\t// so that reloading brings you to the same fragment position\n\tfragmentInURL: true,\n\n\t// Flags if the presentation is running in an embedded mode,\n\t// i.e. contained within a limited portion of the screen\n\tembedded: false,\n\n\t// Flags if we should show a help overlay when the question-mark\n\t// key is pressed\n\thelp: true,\n\n\t// Flags if it should be possible to pause the presentation (blackout)\n\tpause: true,\n\n\t// Flags if speaker notes should be visible to all viewers\n\tshowNotes: false,\n\n\t// Flags if slides with data-visibility=\"hidden\" should be kep visible\n\tshowHiddenSlides: false,\n\n\t// Global override for autoplaying embedded media (video/audio/iframe)\n\t// - null: Media will only autoplay if data-autoplay is present\n\t// - true: All media will autoplay, regardless of individual setting\n\t// - false: No media will autoplay, regardless of individual setting\n\tautoPlayMedia: null,\n\n\t// Global override for preloading lazy-loaded iframes\n\t// - null: Iframes with data-src AND data-preload will be loaded when within\n\t// the viewDistance, iframes with only data-src will be loaded when visible\n\t// - true: All iframes with data-src will be loaded when within the viewDistance\n\t// - false: All iframes with data-src will be loaded only when visible\n\tpreloadIframes: null,\n\n\t// Can be used to globally disable auto-animation\n\tautoAnimate: true,\n\n\t// Optionally provide a custom element matcher that will be\n\t// used to dictate which elements we can animate between.\n\tautoAnimateMatcher: null,\n\n\t// Default settings for our auto-animate transitions, can be\n\t// overridden per-slide or per-element via data arguments\n\tautoAnimateEasing: 'ease',\n\tautoAnimateDuration: 1.0,\n\tautoAnimateUnmatched: true,\n\n\t// CSS properties that can be auto-animated. Position & scale\n\t// is matched separately so there's no need to include styles\n\t// like top/right/bottom/left, width/height or margin.\n\tautoAnimateStyles: [\n\t\t'opacity',\n\t\t'color',\n\t\t'background-color',\n\t\t'padding',\n\t\t'font-size',\n\t\t'line-height',\n\t\t'letter-spacing',\n\t\t'border-width',\n\t\t'border-color',\n\t\t'border-radius',\n\t\t'outline',\n\t\t'outline-offset'\n\t],\n\n\t// Controls automatic progression to the next slide\n\t// - 0: Auto-sliding only happens if the data-autoslide HTML attribute\n\t// is present on the current slide or fragment\n\t// - 1+: All slides will progress automatically at the given interval\n\t// - false: No auto-sliding, even if data-autoslide is present\n\tautoSlide: 0,\n\n\t// Stop auto-sliding after user input\n\tautoSlideStoppable: true,\n\n\t// Use this method for navigation when auto-sliding (defaults to navigateNext)\n\tautoSlideMethod: null,\n\n\t// Specify the average time in seconds that you think you will spend\n\t// presenting each slide. This is used to show a pacing timer in the\n\t// speaker view\n\tdefaultTiming: null,\n\n\t// Enable slide navigation via mouse wheel\n\tmouseWheel: false,\n\n\t// Opens links in an iframe preview overlay\n\t// Add `data-preview-link` and `data-preview-link=\"false\"` to customise each link\n\t// individually\n\tpreviewLinks: false,\n\n\t// Exposes the reveal.js API through window.postMessage\n\tpostMessage: true,\n\n\t// Dispatches all reveal.js events to the parent window through postMessage\n\tpostMessageEvents: false,\n\n\t// Focuses body when page changes visibility to ensure keyboard shortcuts work\n\tfocusBodyOnPageVisibilityChange: true,\n\n\t// Transition style\n\ttransition: 'slide', // none/fade/slide/convex/concave/zoom\n\n\t// Transition speed\n\ttransitionSpeed: 'default', // default/fast/slow\n\n\t// Transition style for full page slide backgrounds\n\tbackgroundTransition: 'fade', // none/fade/slide/convex/concave/zoom\n\n\t// Parallax background image\n\tparallaxBackgroundImage: '', // CSS syntax, e.g. \"a.jpg\"\n\n\t// Parallax background size\n\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"3000px 2000px\"\n\n\t// Parallax background repeat\n\tparallaxBackgroundRepeat: '', // repeat/repeat-x/repeat-y/no-repeat/initial/inherit\n\n\t// Parallax background position\n\tparallaxBackgroundPosition: '', // CSS syntax, e.g. \"top left\"\n\n\t// Amount of pixels to move the parallax background per slide step\n\tparallaxBackgroundHorizontal: null,\n\tparallaxBackgroundVertical: null,\n\n\t// Can be used to initialize reveal.js in one of the following views:\n\t// - print: Render the presentation so that it can be printed to PDF\n\t// - scroll: Show the presentation as a tall scrollable page with scroll\n\t// triggered animations\n\tview: null,\n\n\t// Adjusts the height of each slide in the scroll view.\n\t// - full: Each slide is as tall as the viewport\n\t// - compact: Slides are as small as possible, allowing multiple slides\n\t// to be visible in parallel on tall devices\n\tscrollLayout: 'full',\n\n\t// Control how scroll snapping works in the scroll view.\n\t// - false: \tNo snapping, scrolling is continuous\n\t// - proximity: Snap when close to a slide\n\t// - mandatory: Always snap to the closest slide\n\t//\n\t// Only applies to presentations in scroll view.\n\tscrollSnap: 'mandatory',\n\n\t// Enables and configure the scroll view progress bar.\n\t// - 'auto': Show the scrollbar while scrolling, hide while idle\n\t// - true: Always show the scrollbar\n\t// - false: Never show the scrollbar\n\tscrollProgress: 'auto',\n\n\t// Automatically activate the scroll view when we the viewport falls\n\t// below the given width.\n\tscrollActivationWidth: 435,\n\n\t// The maximum number of pages a single slide can expand onto when printing\n\t// to PDF, unlimited by default\n\tpdfMaxPagesPerSlide: Number.POSITIVE_INFINITY,\n\n\t// Prints each fragment on a separate slide\n\tpdfSeparateFragments: true,\n\n\t// Offset used to reduce the height of content within exported PDF pages.\n\t// This exists to account for environment differences based on how you\n\t// print to PDF. CLI printing options, like phantomjs and wkpdf, can end\n\t// on precisely the total height of the document whereas in-browser\n\t// printing has to end one pixel before.\n\tpdfPageHeightOffset: -1,\n\n\t// Number of slides away from the current that are visible\n\tviewDistance: 3,\n\n\t// Number of slides away from the current that are visible on mobile\n\t// devices. It is advisable to set this to a lower number than\n\t// viewDistance in order to save resources.\n\tmobileViewDistance: 2,\n\n\t// The display mode that will be used to show slides\n\tdisplay: 'block',\n\n\t// Hide cursor if inactive\n\thideInactiveCursor: true,\n\n\t// Time before the cursor is hidden (in ms)\n\thideCursorTime: 5000,\n\n\t// Should we automatically sort and set indices for fragments\n\t// at each sync? (See Reveal.sync)\n\tsortFragmentsOnSync: true,\n\n\t// Script dependencies to load\n\tdependencies: [],\n\n\t// Plugin objects to register and use for this presentation\n\tplugins: []\n\n}","import SlideContent from './controllers/slidecontent.js'\nimport SlideNumber from './controllers/slidenumber.js'\nimport JumpToSlide from './controllers/jumptoslide.js'\nimport Backgrounds from './controllers/backgrounds.js'\nimport AutoAnimate from './controllers/autoanimate.js'\nimport ScrollView from './controllers/scrollview.js'\nimport PrintView from './controllers/printview.js'\nimport Fragments from './controllers/fragments.js'\nimport Overview from './controllers/overview.js'\nimport Keyboard from './controllers/keyboard.js'\nimport Location from './controllers/location.js'\nimport Controls from './controllers/controls.js'\nimport Progress from './controllers/progress.js'\nimport Pointer from './controllers/pointer.js'\nimport Plugins from './controllers/plugins.js'\nimport Touch from './controllers/touch.js'\nimport Focus from './controllers/focus.js'\nimport Notes from './controllers/notes.js'\nimport Playback from './components/playback.js'\nimport defaultConfig from './config.js'\nimport * as Util from './utils/util.js'\nimport * as Device from './utils/device.js'\nimport {\n\tSLIDES_SELECTOR,\n\tHORIZONTAL_SLIDES_SELECTOR,\n\tVERTICAL_SLIDES_SELECTOR,\n\tPOST_MESSAGE_METHOD_BLACKLIST\n} from './utils/constants.js'\n\n// The reveal.js version\nexport const VERSION = '5.0.0';\n\n/**\n * reveal.js\n * https://revealjs.com\n * MIT licensed\n *\n * Copyright (C) 2011-2022 Hakim El Hattab, https://hakim.se\n */\nexport default function( revealElement, options ) {\n\n\t// Support initialization with no args, one arg\n\t// [options] or two args [revealElement, options]\n\tif( arguments.length < 2 ) {\n\t\toptions = arguments[0];\n\t\trevealElement = document.querySelector( '.reveal' );\n\t}\n\n\tconst Reveal = {};\n\n\t// Configuration defaults, can be overridden at initialization time\n\tlet config = {},\n\n\t\t// Flags if reveal.js is loaded (has dispatched the 'ready' event)\n\t\tready = false,\n\n\t\t// The horizontal and vertical index of the currently active slide\n\t\tindexh,\n\t\tindexv,\n\n\t\t// The previous and current slide HTML elements\n\t\tpreviousSlide,\n\t\tcurrentSlide,\n\n\t\t// Remember which directions that the user has navigated towards\n\t\tnavigationHistory = {\n\t\t\thasNavigatedHorizontally: false,\n\t\t\thasNavigatedVertically: false\n\t\t},\n\n\t\t// Slides may have a data-state attribute which we pick up and apply\n\t\t// as a class to the body. This list contains the combined state of\n\t\t// all current slides.\n\t\tstate = [],\n\n\t\t// The current scale of the presentation (see width/height config)\n\t\tscale = 1,\n\n\t\t// CSS transform that is currently applied to the slides container,\n\t\t// split into two groups\n\t\tslidesTransform = { layout: '', overview: '' },\n\n\t\t// Cached references to DOM elements\n\t\tdom = {},\n\n\t\t// Flags if the interaction event listeners are bound\n\t\teventsAreBound = false,\n\n\t\t// The current slide transition state; idle or running\n\t\ttransition = 'idle',\n\n\t\t// The current auto-slide duration\n\t\tautoSlide = 0,\n\n\t\t// Auto slide properties\n\t\tautoSlidePlayer,\n\t\tautoSlideTimeout = 0,\n\t\tautoSlideStartTime = -1,\n\t\tautoSlidePaused = false,\n\n\t\t// Controllers for different aspects of our presentation. They're\n\t\t// all given direct references to this Reveal instance since there\n\t\t// may be multiple presentations running in parallel.\n\t\tslideContent = new SlideContent( Reveal ),\n\t\tslideNumber = new SlideNumber( Reveal ),\n\t\tjumpToSlide = new JumpToSlide( Reveal ),\n\t\tautoAnimate = new AutoAnimate( Reveal ),\n\t\tbackgrounds = new Backgrounds( Reveal ),\n\t\tscrollView = new ScrollView( Reveal ),\n\t\tprintView = new PrintView( Reveal ),\n\t\tfragments = new Fragments( Reveal ),\n\t\toverview = new Overview( Reveal ),\n\t\tkeyboard = new Keyboard( Reveal ),\n\t\tlocation = new Location( Reveal ),\n\t\tcontrols = new Controls( Reveal ),\n\t\tprogress = new Progress( Reveal ),\n\t\tpointer = new Pointer( Reveal ),\n\t\tplugins = new Plugins( Reveal ),\n\t\tfocus = new Focus( Reveal ),\n\t\ttouch = new Touch( Reveal ),\n\t\tnotes = new Notes( Reveal );\n\n\t/**\n\t * Starts up the presentation.\n\t */\n\tfunction initialize( initOptions ) {\n\n\t\tif( !revealElement ) throw 'Unable to find presentation root (<div class=\"reveal\">).';\n\n\t\t// Cache references to key DOM elements\n\t\tdom.wrapper = revealElement;\n\t\tdom.slides = revealElement.querySelector( '.slides' );\n\n\t\tif( !dom.slides ) throw 'Unable to find slides container (<div class=\"slides\">).';\n\n\t\t// Compose our config object in order of increasing precedence:\n\t\t// 1. Default reveal.js options\n\t\t// 2. Options provided via Reveal.configure() prior to\n\t\t// initialization\n\t\t// 3. Options passed to the Reveal constructor\n\t\t// 4. Options passed to Reveal.initialize\n\t\t// 5. Query params\n\t\tconfig = { ...defaultConfig, ...config, ...options, ...initOptions, ...Util.getQueryHash() };\n\n\t\t// Legacy support for the ?print-pdf query\n\t\tif( /print-pdf/gi.test( window.location.search ) ) {\n\t\t\tconfig.view = 'print';\n\t\t}\n\n\t\tsetViewport();\n\n\t\t// Force a layout when the whole page, incl fonts, has loaded\n\t\twindow.addEventListener( 'load', layout, false );\n\n\t\t// Register plugins and load dependencies, then move on to #start()\n\t\tplugins.load( config.plugins, config.dependencies ).then( start );\n\n\t\treturn new Promise( resolve => Reveal.on( 'ready', resolve ) );\n\n\t}\n\n\t/**\n\t * Encase the presentation in a reveal.js viewport. The\n\t * extent of the viewport differs based on configuration.\n\t */\n\tfunction setViewport() {\n\n\t\t// Embedded decks use the reveal element as their viewport\n\t\tif( config.embedded === true ) {\n\t\t\tdom.viewport = Util.closest( revealElement, '.reveal-viewport' ) || revealElement;\n\t\t}\n\t\t// Full-page decks use the body as their viewport\n\t\telse {\n\t\t\tdom.viewport = document.body;\n\t\t\tdocument.documentElement.classList.add( 'reveal-full-page' );\n\t\t}\n\n\t\tdom.viewport.classList.add( 'reveal-viewport' );\n\n\t}\n\n\t/**\n\t * Starts up reveal.js by binding input events and navigating\n\t * to the current URL deeplink if there is one.\n\t */\n\tfunction start() {\n\n\t\tready = true;\n\n\t\t// Remove slides hidden with data-visibility\n\t\tremoveHiddenSlides();\n\n\t\t// Make sure we've got all the DOM elements we need\n\t\tsetupDOM();\n\n\t\t// Listen to messages posted to this window\n\t\tsetupPostMessage();\n\n\t\t// Prevent the slides from being scrolled out of view\n\t\tsetupScrollPrevention();\n\n\t\t// Adds bindings for fullscreen mode\n\t\tsetupFullscreen();\n\n\t\t// Resets all vertical slides so that only the first is visible\n\t\tresetVerticalSlides();\n\n\t\t// Updates the presentation to match the current configuration values\n\t\tconfigure();\n\n\t\t// Create slide backgrounds\n\t\tbackgrounds.update( true );\n\n\t\t// Activate the print/scroll view if configured\n\t\tactivateInitialView();\n\n\t\t// Read the initial hash\n\t\tlocation.readURL();\n\n\t\t// Notify listeners that the presentation is ready but use a 1ms\n\t\t// timeout to ensure it's not fired synchronously after #initialize()\n\t\tsetTimeout( () => {\n\t\t\t// Enable transitions now that we're loaded\n\t\t\tdom.slides.classList.remove( 'no-transition' );\n\n\t\t\tdom.wrapper.classList.add( 'ready' );\n\n\t\t\tdispatchEvent({\n\t\t\t\ttype: 'ready',\n\t\t\t\tdata: {\n\t\t\t\t\tindexh,\n\t\t\t\t\tindexv,\n\t\t\t\t\tcurrentSlide\n\t\t\t\t}\n\t\t\t});\n\t\t}, 1 );\n\n\t}\n\n\t/**\n\t * Activates the correct reveal.js view based on our config.\n\t * This is only invoked once during initialization.\n\t */\n\tfunction activateInitialView() {\n\n\t\tconst activatePrintView = config.view === 'print';\n\t\tconst activateScrollView = config.view === 'scroll' || config.view === 'reader';\n\n\t\tif( activatePrintView || activateScrollView ) {\n\n\t\t\tif( activatePrintView ) {\n\t\t\t\tremoveEventListeners();\n\t\t\t}\n\t\t\telse {\n\t\t\t\ttouch.unbind();\n\t\t\t}\n\n\t\t\t// Avoid content flickering during layout\n\t\t\tdom.viewport.classList.add( 'loading-scroll-mode' );\n\n\t\t\tif( activatePrintView ) {\n\t\t\t\t// The document needs to have loaded for the PDF layout\n\t\t\t\t// measurements to be accurate\n\t\t\t\tif( document.readyState === 'complete' ) {\n\t\t\t\t\tprintView.activate();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\twindow.addEventListener( 'load', () => printView.activate() );\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\tscrollView.activate();\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Removes all slides with data-visibility=\"hidden\". This\n\t * is done right before the rest of the presentation is\n\t * initialized.\n\t *\n\t * If you want to show all hidden slides, initialize\n\t * reveal.js with showHiddenSlides set to true.\n\t */\n\tfunction removeHiddenSlides() {\n\n\t\tif( !config.showHiddenSlides ) {\n\t\t\tUtil.queryAll( dom.wrapper, 'section[data-visibility=\"hidden\"]' ).forEach( slide => {\n\t\t\t\tconst parent = slide.parentNode;\n\n\t\t\t\t// If this slide is part of a stack and that stack will be\n\t\t\t\t// empty after removing the hidden slide, remove the entire\n\t\t\t\t// stack\n\t\t\t\tif( parent.childElementCount === 1 && /section/i.test( parent.nodeName ) ) {\n\t\t\t\t\tparent.remove();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tslide.remove();\n\t\t\t\t}\n\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * Finds and stores references to DOM elements which are\n\t * required by the presentation. If a required element is\n\t * not found, it is created.\n\t */\n\tfunction setupDOM() {\n\n\t\t// Prevent transitions while we're loading\n\t\tdom.slides.classList.add( 'no-transition' );\n\n\t\tif( Device.isMobile ) {\n\t\t\tdom.wrapper.classList.add( 'no-hover' );\n\t\t}\n\t\telse {\n\t\t\tdom.wrapper.classList.remove( 'no-hover' );\n\t\t}\n\n\t\tbackgrounds.render();\n\t\tslideNumber.render();\n\t\tjumpToSlide.render();\n\t\tcontrols.render();\n\t\tprogress.render();\n\t\tnotes.render();\n\n\t\t// Overlay graphic which is displayed during the paused mode\n\t\tdom.pauseOverlay = Util.createSingletonNode( dom.wrapper, 'div', 'pause-overlay', config.controls ? '<button class=\"resume-button\">Resume presentation</button>' : null );\n\n\t\tdom.statusElement = createStatusElement();\n\n\t\tdom.wrapper.setAttribute( 'role', 'application' );\n\t}\n\n\t/**\n\t * Creates a hidden div with role aria-live to announce the\n\t * current slide content. Hide the div off-screen to make it\n\t * available only to Assistive Technologies.\n\t *\n\t * @return {HTMLElement}\n\t */\n\tfunction createStatusElement() {\n\n\t\tlet statusElement = dom.wrapper.querySelector( '.aria-status' );\n\t\tif( !statusElement ) {\n\t\t\tstatusElement = document.createElement( 'div' );\n\t\t\tstatusElement.style.position = 'absolute';\n\t\t\tstatusElement.style.height = '1px';\n\t\t\tstatusElement.style.width = '1px';\n\t\t\tstatusElement.style.overflow = 'hidden';\n\t\t\tstatusElement.style.clip = 'rect( 1px, 1px, 1px, 1px )';\n\t\t\tstatusElement.classList.add( 'aria-status' );\n\t\t\tstatusElement.setAttribute( 'aria-live', 'polite' );\n\t\t\tstatusElement.setAttribute( 'aria-atomic','true' );\n\t\t\tdom.wrapper.appendChild( statusElement );\n\t\t}\n\t\treturn statusElement;\n\n\t}\n\n\t/**\n\t * Announces the given text to screen readers.\n\t */\n\tfunction announceStatus( value ) {\n\n\t\tdom.statusElement.textContent = value;\n\n\t}\n\n\t/**\n\t * Converts the given HTML element into a string of text\n\t * that can be announced to a screen reader. Hidden\n\t * elements are excluded.\n\t */\n\tfunction getStatusText( node ) {\n\n\t\tlet text = '';\n\n\t\t// Text node\n\t\tif( node.nodeType === 3 ) {\n\t\t\ttext += node.textContent;\n\t\t}\n\t\t// Element node\n\t\telse if( node.nodeType === 1 ) {\n\n\t\t\tlet isAriaHidden = node.getAttribute( 'aria-hidden' );\n\t\t\tlet isDisplayHidden = window.getComputedStyle( node )['display'] === 'none';\n\t\t\tif( isAriaHidden !== 'true' && !isDisplayHidden ) {\n\n\t\t\t\tArray.from( node.childNodes ).forEach( child => {\n\t\t\t\t\ttext += getStatusText( child );\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t}\n\n\t\ttext = text.trim();\n\n\t\treturn text === '' ? '' : text + ' ';\n\n\t}\n\n\t/**\n\t * This is an unfortunate necessity. Some actions – such as\n\t * an input field being focused in an iframe or using the\n\t * keyboard to expand text selection beyond the bounds of\n\t * a slide – can trigger our content to be pushed out of view.\n\t * This scrolling can not be prevented by hiding overflow in\n\t * CSS (we already do) so we have to resort to repeatedly\n\t * checking if the slides have been offset :(\n\t */\n\tfunction setupScrollPrevention() {\n\n\t\tsetInterval( () => {\n\t\t\tif( !scrollView.isActive() && dom.wrapper.scrollTop !== 0 || dom.wrapper.scrollLeft !== 0 ) {\n\t\t\t\tdom.wrapper.scrollTop = 0;\n\t\t\t\tdom.wrapper.scrollLeft = 0;\n\t\t\t}\n\t\t}, 1000 );\n\n\t}\n\n\t/**\n\t * After entering fullscreen we need to force a layout to\n\t * get our presentations to scale correctly. This behavior\n\t * is inconsistent across browsers but a force layout seems\n\t * to normalize it.\n\t */\n\tfunction setupFullscreen() {\n\n\t\tdocument.addEventListener( 'fullscreenchange', onFullscreenChange );\n\t\tdocument.addEventListener( 'webkitfullscreenchange', onFullscreenChange );\n\n\t}\n\n\t/**\n\t * Registers a listener to postMessage events, this makes it\n\t * possible to call all reveal.js API methods from another\n\t * window. For example:\n\t *\n\t * revealWindow.postMessage( JSON.stringify({\n\t * method: 'slide',\n\t * args: [ 2 ]\n\t * }), '*' );\n\t */\n\tfunction setupPostMessage() {\n\n\t\tif( config.postMessage ) {\n\t\t\twindow.addEventListener( 'message', onPostMessage, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies the configuration settings from the config\n\t * object. May be called multiple times.\n\t *\n\t * @param {object} options\n\t */\n\tfunction configure( options ) {\n\n\t\tconst oldConfig = { ...config }\n\n\t\t// New config options may be passed when this method\n\t\t// is invoked through the API after initialization\n\t\tif( typeof options === 'object' ) Util.extend( config, options );\n\n\t\t// Abort if reveal.js hasn't finished loading, config\n\t\t// changes will be applied automatically once ready\n\t\tif( Reveal.isReady() === false ) return;\n\n\t\tconst numberOfSlides = dom.wrapper.querySelectorAll( SLIDES_SELECTOR ).length;\n\n\t\t// The transition is added as a class on the .reveal element\n\t\tdom.wrapper.classList.remove( oldConfig.transition );\n\t\tdom.wrapper.classList.add( config.transition );\n\n\t\tdom.wrapper.setAttribute( 'data-transition-speed', config.transitionSpeed );\n\t\tdom.wrapper.setAttribute( 'data-background-transition', config.backgroundTransition );\n\n\t\t// Expose our configured slide dimensions as custom props\n\t\tdom.viewport.style.setProperty( '--slide-width', typeof config.width === 'string' ? config.width : config.width + 'px' );\n\t\tdom.viewport.style.setProperty( '--slide-height', typeof config.height === 'string' ? config.height : config.height + 'px' );\n\n\t\tif( config.shuffle ) {\n\t\t\tshuffle();\n\t\t}\n\n\t\tUtil.toggleClass( dom.wrapper, 'embedded', config.embedded );\n\t\tUtil.toggleClass( dom.wrapper, 'rtl', config.rtl );\n\t\tUtil.toggleClass( dom.wrapper, 'center', config.center );\n\n\t\t// Exit the paused mode if it was configured off\n\t\tif( config.pause === false ) {\n\t\t\tresume();\n\t\t}\n\n\t\t// Iframe link previews\n\t\tif( config.previewLinks ) {\n\t\t\tenablePreviewLinks();\n\t\t\tdisablePreviewLinks( '[data-preview-link=false]' );\n\t\t}\n\t\telse {\n\t\t\tdisablePreviewLinks();\n\t\t\tenablePreviewLinks( '[data-preview-link]:not([data-preview-link=false])' );\n\t\t}\n\n\t\t// Reset all changes made by auto-animations\n\t\tautoAnimate.reset();\n\n\t\t// Remove existing auto-slide controls\n\t\tif( autoSlidePlayer ) {\n\t\t\tautoSlidePlayer.destroy();\n\t\t\tautoSlidePlayer = null;\n\t\t}\n\n\t\t// Generate auto-slide controls if needed\n\t\tif( numberOfSlides > 1 && config.autoSlide && config.autoSlideStoppable ) {\n\t\t\tautoSlidePlayer = new Playback( dom.wrapper, () => {\n\t\t\t\treturn Math.min( Math.max( ( Date.now() - autoSlideStartTime ) / autoSlide, 0 ), 1 );\n\t\t\t} );\n\n\t\t\tautoSlidePlayer.on( 'click', onAutoSlidePlayerClick );\n\t\t\tautoSlidePaused = false;\n\t\t}\n\n\t\t// Add the navigation mode to the DOM so we can adjust styling\n\t\tif( config.navigationMode !== 'default' ) {\n\t\t\tdom.wrapper.setAttribute( 'data-navigation-mode', config.navigationMode );\n\t\t}\n\t\telse {\n\t\t\tdom.wrapper.removeAttribute( 'data-navigation-mode' );\n\t\t}\n\n\t\tnotes.configure( config, oldConfig );\n\t\tfocus.configure( config, oldConfig );\n\t\tpointer.configure( config, oldConfig );\n\t\tcontrols.configure( config, oldConfig );\n\t\tprogress.configure( config, oldConfig );\n\t\tkeyboard.configure( config, oldConfig );\n\t\tfragments.configure( config, oldConfig );\n\t\tslideNumber.configure( config, oldConfig );\n\n\t\tsync();\n\n\t}\n\n\t/**\n\t * Binds all event listeners.\n\t */\n\tfunction addEventListeners() {\n\n\t\teventsAreBound = true;\n\n\t\twindow.addEventListener( 'resize', onWindowResize, false );\n\n\t\tif( config.touch ) touch.bind();\n\t\tif( config.keyboard ) keyboard.bind();\n\t\tif( config.progress ) progress.bind();\n\t\tif( config.respondToHashChanges ) location.bind();\n\t\tcontrols.bind();\n\t\tfocus.bind();\n\n\t\tdom.slides.addEventListener( 'click', onSlidesClicked, false );\n\t\tdom.slides.addEventListener( 'transitionend', onTransitionEnd, false );\n\t\tdom.pauseOverlay.addEventListener( 'click', resume, false );\n\n\t\tif( config.focusBodyOnPageVisibilityChange ) {\n\t\t\tdocument.addEventListener( 'visibilitychange', onPageVisibilityChange, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Unbinds all event listeners.\n\t */\n\tfunction removeEventListeners() {\n\n\t\teventsAreBound = false;\n\n\t\ttouch.unbind();\n\t\tfocus.unbind();\n\t\tkeyboard.unbind();\n\t\tcontrols.unbind();\n\t\tprogress.unbind();\n\t\tlocation.unbind();\n\n\t\twindow.removeEventListener( 'resize', onWindowResize, false );\n\n\t\tdom.slides.removeEventListener( 'click', onSlidesClicked, false );\n\t\tdom.slides.removeEventListener( 'transitionend', onTransitionEnd, false );\n\t\tdom.pauseOverlay.removeEventListener( 'click', resume, false );\n\n\t}\n\n\t/**\n\t * Uninitializes reveal.js by undoing changes made to the\n\t * DOM and removing all event listeners.\n\t */\n\tfunction destroy() {\n\n\t\tremoveEventListeners();\n\t\tcancelAutoSlide();\n\t\tdisablePreviewLinks();\n\n\t\t// Destroy controllers\n\t\tnotes.destroy();\n\t\tfocus.destroy();\n\t\tplugins.destroy();\n\t\tpointer.destroy();\n\t\tcontrols.destroy();\n\t\tprogress.destroy();\n\t\tbackgrounds.destroy();\n\t\tslideNumber.destroy();\n\t\tjumpToSlide.destroy();\n\n\t\t// Remove event listeners\n\t\tdocument.removeEventListener( 'fullscreenchange', onFullscreenChange );\n\t\tdocument.removeEventListener( 'webkitfullscreenchange', onFullscreenChange );\n\t\tdocument.removeEventListener( 'visibilitychange', onPageVisibilityChange, false );\n\t\twindow.removeEventListener( 'message', onPostMessage, false );\n\t\twindow.removeEventListener( 'load', layout, false );\n\n\t\t// Undo DOM changes\n\t\tif( dom.pauseOverlay ) dom.pauseOverlay.remove();\n\t\tif( dom.statusElement ) dom.statusElement.remove();\n\n\t\tdocument.documentElement.classList.remove( 'reveal-full-page' );\n\n\t\tdom.wrapper.classList.remove( 'ready', 'center', 'has-horizontal-slides', 'has-vertical-slides' );\n\t\tdom.wrapper.removeAttribute( 'data-transition-speed' );\n\t\tdom.wrapper.removeAttribute( 'data-background-transition' );\n\n\t\tdom.viewport.classList.remove( 'reveal-viewport' );\n\t\tdom.viewport.style.removeProperty( '--slide-width' );\n\t\tdom.viewport.style.removeProperty( '--slide-height' );\n\n\t\tdom.slides.style.removeProperty( 'width' );\n\t\tdom.slides.style.removeProperty( 'height' );\n\t\tdom.slides.style.removeProperty( 'zoom' );\n\t\tdom.slides.style.removeProperty( 'left' );\n\t\tdom.slides.style.removeProperty( 'top' );\n\t\tdom.slides.style.removeProperty( 'bottom' );\n\t\tdom.slides.style.removeProperty( 'right' );\n\t\tdom.slides.style.removeProperty( 'transform' );\n\n\t\tArray.from( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( slide => {\n\t\t\tslide.style.removeProperty( 'display' );\n\t\t\tslide.style.removeProperty( 'top' );\n\t\t\tslide.removeAttribute( 'hidden' );\n\t\t\tslide.removeAttribute( 'aria-hidden' );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Adds a listener to one of our custom reveal.js events,\n\t * like slidechanged.\n\t */\n\tfunction on( type, listener, useCapture ) {\n\n\t\trevealElement.addEventListener( type, listener, useCapture );\n\n\t}\n\n\t/**\n\t * Unsubscribes from a reveal.js event.\n\t */\n\tfunction off( type, listener, useCapture ) {\n\n\t\trevealElement.removeEventListener( type, listener, useCapture );\n\n\t}\n\n\t/**\n\t * Applies CSS transforms to the slides container. The container\n\t * is transformed from two separate sources: layout and the overview\n\t * mode.\n\t *\n\t * @param {object} transforms\n\t */\n\tfunction transformSlides( transforms ) {\n\n\t\t// Pick up new transforms from arguments\n\t\tif( typeof transforms.layout === 'string' ) slidesTransform.layout = transforms.layout;\n\t\tif( typeof transforms.overview === 'string' ) slidesTransform.overview = transforms.overview;\n\n\t\t// Apply the transforms to the slides container\n\t\tif( slidesTransform.layout ) {\n\t\t\tUtil.transformElement( dom.slides, slidesTransform.layout + ' ' + slidesTransform.overview );\n\t\t}\n\t\telse {\n\t\t\tUtil.transformElement( dom.slides, slidesTransform.overview );\n\t\t}\n\n\t}\n\n\t/**\n\t * Dispatches an event of the specified type from the\n\t * reveal DOM element.\n\t */\n\tfunction dispatchEvent({ target=dom.wrapper, type, data, bubbles=true }) {\n\n\t\tlet event = document.createEvent( 'HTMLEvents', 1, 2 );\n\t\tevent.initEvent( type, bubbles, true );\n\t\tUtil.extend( event, data );\n\t\ttarget.dispatchEvent( event );\n\n\t\tif( target === dom.wrapper ) {\n\t\t\t// If we're in an iframe, post each reveal.js event to the\n\t\t\t// parent window. Used by the notes plugin\n\t\t\tdispatchPostMessage( type );\n\t\t}\n\n\t\treturn event;\n\n\t}\n\n\t/**\n\t * Dispatches a slidechanged event.\n\t *\n\t * @param {string} origin Used to identify multiplex clients\n\t */\n\tfunction dispatchSlideChanged( origin ) {\n\n\t\tdispatchEvent({\n\t\t\ttype: 'slidechanged',\n\t\t\tdata: {\n\t\t\t\tindexh,\n\t\t\t\tindexv,\n\t\t\t\tpreviousSlide,\n\t\t\t\tcurrentSlide,\n\t\t\t\torigin\n\t\t\t}\n\t\t});\n\n\t}\n\n\t/**\n\t * Dispatched a postMessage of the given type from our window.\n\t */\n\tfunction dispatchPostMessage( type, data ) {\n\n\t\tif( config.postMessageEvents && window.parent !== window.self ) {\n\t\t\tlet message = {\n\t\t\t\tnamespace: 'reveal',\n\t\t\t\teventName: type,\n\t\t\t\tstate: getState()\n\t\t\t};\n\n\t\t\tUtil.extend( message, data );\n\n\t\t\twindow.parent.postMessage( JSON.stringify( message ), '*' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Bind preview frame links.\n\t *\n\t * @param {string} [selector=a] - selector for anchors\n\t */\n\tfunction enablePreviewLinks( selector = 'a' ) {\n\n\t\tArray.from( dom.wrapper.querySelectorAll( selector ) ).forEach( element => {\n\t\t\tif( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {\n\t\t\t\telement.addEventListener( 'click', onPreviewLinkClicked, false );\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Unbind preview frame links.\n\t */\n\tfunction disablePreviewLinks( selector = 'a' ) {\n\n\t\tArray.from( dom.wrapper.querySelectorAll( selector ) ).forEach( element => {\n\t\t\tif( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {\n\t\t\t\telement.removeEventListener( 'click', onPreviewLinkClicked, false );\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Opens a preview window for the target URL.\n\t *\n\t * @param {string} url - url for preview iframe src\n\t */\n\tfunction showPreview( url ) {\n\n\t\tcloseOverlay();\n\n\t\tdom.overlay = document.createElement( 'div' );\n\t\tdom.overlay.classList.add( 'overlay' );\n\t\tdom.overlay.classList.add( 'overlay-preview' );\n\t\tdom.wrapper.appendChild( dom.overlay );\n\n\t\tdom.overlay.innerHTML =\n\t\t\t`<header>\n\t\t\t\t<a class=\"close\" href=\"#\"><span class=\"icon\"></span></a>\n\t\t\t\t<a class=\"external\" href=\"${url}\" target=\"_blank\"><span class=\"icon\"></span></a>\n\t\t\t</header>\n\t\t\t<div class=\"spinner\"></div>\n\t\t\t<div class=\"viewport\">\n\t\t\t\t<iframe src=\"${url}\"></iframe>\n\t\t\t\t<small class=\"viewport-inner\">\n\t\t\t\t\t<span class=\"x-frame-error\">Unable to load iframe. This is likely due to the site's policy (x-frame-options).</span>\n\t\t\t\t</small>\n\t\t\t</div>`;\n\n\t\tdom.overlay.querySelector( 'iframe' ).addEventListener( 'load', event => {\n\t\t\tdom.overlay.classList.add( 'loaded' );\n\t\t}, false );\n\n\t\tdom.overlay.querySelector( '.close' ).addEventListener( 'click', event => {\n\t\t\tcloseOverlay();\n\t\t\tevent.preventDefault();\n\t\t}, false );\n\n\t\tdom.overlay.querySelector( '.external' ).addEventListener( 'click', event => {\n\t\t\tcloseOverlay();\n\t\t}, false );\n\n\t}\n\n\t/**\n\t * Open or close help overlay window.\n\t *\n\t * @param {Boolean} [override] Flag which overrides the\n\t * toggle logic and forcibly sets the desired state. True means\n\t * help is open, false means it's closed.\n\t */\n\tfunction toggleHelp( override ){\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? showHelp() : closeOverlay();\n\t\t}\n\t\telse {\n\t\t\tif( dom.overlay ) {\n\t\t\t\tcloseOverlay();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tshowHelp();\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Opens an overlay window with help material.\n\t */\n\tfunction showHelp() {\n\n\t\tif( config.help ) {\n\n\t\t\tcloseOverlay();\n\n\t\t\tdom.overlay = document.createElement( 'div' );\n\t\t\tdom.overlay.classList.add( 'overlay' );\n\t\t\tdom.overlay.classList.add( 'overlay-help' );\n\t\t\tdom.wrapper.appendChild( dom.overlay );\n\n\t\t\tlet html = '<p class=\"title\">Keyboard Shortcuts</p><br/>';\n\n\t\t\tlet shortcuts = keyboard.getShortcuts(),\n\t\t\t\tbindings = keyboard.getBindings();\n\n\t\t\thtml += '<table><th>KEY</th><th>ACTION</th>';\n\t\t\tfor( let key in shortcuts ) {\n\t\t\t\thtml += `<tr><td>${key}</td><td>${shortcuts[ key ]}</td></tr>`;\n\t\t\t}\n\n\t\t\t// Add custom key bindings that have associated descriptions\n\t\t\tfor( let binding in bindings ) {\n\t\t\t\tif( bindings[binding].key && bindings[binding].description ) {\n\t\t\t\t\thtml += `<tr><td>${bindings[binding].key}</td><td>${bindings[binding].description}</td></tr>`;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\thtml += '</table>';\n\n\t\t\tdom.overlay.innerHTML = `\n\t\t\t\t<header>\n\t\t\t\t\t<a class=\"close\" href=\"#\"><span class=\"icon\"></span></a>\n\t\t\t\t</header>\n\t\t\t\t<div class=\"viewport\">\n\t\t\t\t\t<div class=\"viewport-inner\">${html}</div>\n\t\t\t\t</div>\n\t\t\t`;\n\n\t\t\tdom.overlay.querySelector( '.close' ).addEventListener( 'click', event => {\n\t\t\t\tcloseOverlay();\n\t\t\t\tevent.preventDefault();\n\t\t\t}, false );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Closes any currently open overlay.\n\t */\n\tfunction closeOverlay() {\n\n\t\tif( dom.overlay ) {\n\t\t\tdom.overlay.parentNode.removeChild( dom.overlay );\n\t\t\tdom.overlay = null;\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\t/**\n\t * Applies JavaScript-controlled layout rules to the\n\t * presentation.\n\t */\n\tfunction layout() {\n\n\t\tif( dom.wrapper && !printView.isActive() ) {\n\n\t\t\tconst viewportWidth = dom.viewport.offsetWidth;\n\t\t\tconst viewportHeight = dom.viewport.offsetHeight;\n\n\t\t\tif( !config.disableLayout ) {\n\n\t\t\t\t// On some mobile devices '100vh' is taller than the visible\n\t\t\t\t// viewport which leads to part of the presentation being\n\t\t\t\t// cut off. To work around this we define our own '--vh' custom\n\t\t\t\t// property where 100x adds up to the correct height.\n\t\t\t\t//\n\t\t\t\t// https://css-tricks.com/the-trick-to-viewport-units-on-mobile/\n\t\t\t\tif( Device.isMobile && !config.embedded ) {\n\t\t\t\t\tdocument.documentElement.style.setProperty( '--vh', ( window.innerHeight * 0.01 ) + 'px' );\n\t\t\t\t}\n\n\t\t\t\tconst size = scrollView.isActive() ?\n\t\t\t\t\t\t\t getComputedSlideSize( viewportWidth, viewportHeight ) :\n\t\t\t\t\t\t\t getComputedSlideSize();\n\n\t\t\t\tconst oldScale = scale;\n\n\t\t\t\t// Layout the contents of the slides\n\t\t\t\tlayoutSlideContents( config.width, config.height );\n\n\t\t\t\tdom.slides.style.width = size.width + 'px';\n\t\t\t\tdom.slides.style.height = size.height + 'px';\n\n\t\t\t\t// Determine scale of content to fit within available space\n\t\t\t\tscale = Math.min( size.presentationWidth / size.width, size.presentationHeight / size.height );\n\n\t\t\t\t// Respect max/min scale settings\n\t\t\t\tscale = Math.max( scale, config.minScale );\n\t\t\t\tscale = Math.min( scale, config.maxScale );\n\n\t\t\t\t// Don't apply any scaling styles if scale is 1 or we're\n\t\t\t\t// in the scroll view\n\t\t\t\tif( scale === 1 || scrollView.isActive() ) {\n\t\t\t\t\tdom.slides.style.zoom = '';\n\t\t\t\t\tdom.slides.style.left = '';\n\t\t\t\t\tdom.slides.style.top = '';\n\t\t\t\t\tdom.slides.style.bottom = '';\n\t\t\t\t\tdom.slides.style.right = '';\n\t\t\t\t\ttransformSlides( { layout: '' } );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tdom.slides.style.zoom = '';\n\t\t\t\t\tdom.slides.style.left = '50%';\n\t\t\t\t\tdom.slides.style.top = '50%';\n\t\t\t\t\tdom.slides.style.bottom = 'auto';\n\t\t\t\t\tdom.slides.style.right = 'auto';\n\t\t\t\t\ttransformSlides( { layout: 'translate(-50%, -50%) scale('+ scale +')' } );\n\t\t\t\t}\n\n\t\t\t\t// Select all slides, vertical and horizontal\n\t\t\t\tconst slides = Array.from( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) );\n\n\t\t\t\tfor( let i = 0, len = slides.length; i < len; i++ ) {\n\t\t\t\t\tconst slide = slides[ i ];\n\n\t\t\t\t\t// Don't bother updating invisible slides\n\t\t\t\t\tif( slide.style.display === 'none' ) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\n\t\t\t\t\tif( ( config.center || slide.classList.contains( 'center' ) ) ) {\n\t\t\t\t\t\t// Vertical stacks are not centred since their section\n\t\t\t\t\t\t// children will be\n\t\t\t\t\t\tif( slide.classList.contains( 'stack' ) ) {\n\t\t\t\t\t\t\tslide.style.top = 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tslide.style.top = Math.max( ( size.height - slide.scrollHeight ) / 2, 0 ) + 'px';\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tslide.style.top = '';\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t\tif( oldScale !== scale ) {\n\t\t\t\t\tdispatchEvent({\n\t\t\t\t\t\ttype: 'resize',\n\t\t\t\t\t\tdata: {\n\t\t\t\t\t\t\toldScale,\n\t\t\t\t\t\t\tscale,\n\t\t\t\t\t\t\tsize\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\t// Responsively turn on the scroll mode if there is an activation\n\t\t\t\t// width configured. Ignore if we're configured to always be in\n\t\t\t\t// scroll mode.\n\t\t\t\tif( typeof config.scrollActivationWidth === 'number' && config.view !== 'scroll' ) {\n\t\t\t\t\tif( size.presentationWidth > 0 && size.presentationWidth <= config.scrollActivationWidth ) {\n\t\t\t\t\t\tif( !scrollView.isActive() ) scrollView.activate();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tif( scrollView.isActive() ) scrollView.deactivate();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tdom.viewport.style.setProperty( '--slide-scale', scale );\n\t\t\tdom.viewport.style.setProperty( '--viewport-width', viewportWidth + 'px' );\n\t\t\tdom.viewport.style.setProperty( '--viewport-height', viewportHeight + 'px' );\n\n\t\t\tscrollView.layout();\n\n\t\t\tprogress.update();\n\t\t\tbackgrounds.updateParallax();\n\n\t\t\tif( overview.isActive() ) {\n\t\t\t\toverview.update();\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies layout logic to the contents of all slides in\n\t * the presentation.\n\t *\n\t * @param {string|number} width\n\t * @param {string|number} height\n\t */\n\tfunction layoutSlideContents( width, height ) {\n\t\t// Handle sizing of elements with the 'r-stretch' class\n\t\tUtil.queryAll( dom.slides, 'section > .stretch, section > .r-stretch' ).forEach( element => {\n\n\t\t\t// Determine how much vertical space we can use\n\t\t\tlet remainingHeight = Util.getRemainingHeight( element, height );\n\n\t\t\t// Consider the aspect ratio of media elements\n\t\t\tif( /(img|video)/gi.test( element.nodeName ) ) {\n\t\t\t\tconst nw = element.naturalWidth || element.videoWidth,\n\t\t\t\t\t nh = element.naturalHeight || element.videoHeight;\n\n\t\t\t\tconst es = Math.min( width / nw, remainingHeight / nh );\n\n\t\t\t\telement.style.width = ( nw * es ) + 'px';\n\t\t\t\telement.style.height = ( nh * es ) + 'px';\n\n\t\t\t}\n\t\t\telse {\n\t\t\t\telement.style.width = width + 'px';\n\t\t\t\telement.style.height = remainingHeight + 'px';\n\t\t\t}\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Calculates the computed pixel size of our slides. These\n\t * values are based on the width and height configuration\n\t * options.\n\t *\n\t * @param {number} [presentationWidth=dom.wrapper.offsetWidth]\n\t * @param {number} [presentationHeight=dom.wrapper.offsetHeight]\n\t */\n\tfunction getComputedSlideSize( presentationWidth, presentationHeight ) {\n\n\t\tlet width = config.width;\n\t\tlet height = config.height;\n\n\t\tif( config.disableLayout ) {\n\t\t\twidth = dom.slides.offsetWidth;\n\t\t\theight = dom.slides.offsetHeight;\n\t\t}\n\n\t\tconst size = {\n\t\t\t// Slide size\n\t\t\twidth: width,\n\t\t\theight: height,\n\n\t\t\t// Presentation size\n\t\t\tpresentationWidth: presentationWidth || dom.wrapper.offsetWidth,\n\t\t\tpresentationHeight: presentationHeight || dom.wrapper.offsetHeight\n\t\t};\n\n\t\t// Reduce available space by margin\n\t\tsize.presentationWidth -= ( size.presentationWidth * config.margin );\n\t\tsize.presentationHeight -= ( size.presentationHeight * config.margin );\n\n\t\t// Slide width may be a percentage of available width\n\t\tif( typeof size.width === 'string' && /%$/.test( size.width ) ) {\n\t\t\tsize.width = parseInt( size.width, 10 ) / 100 * size.presentationWidth;\n\t\t}\n\n\t\t// Slide height may be a percentage of available height\n\t\tif( typeof size.height === 'string' && /%$/.test( size.height ) ) {\n\t\t\tsize.height = parseInt( size.height, 10 ) / 100 * size.presentationHeight;\n\t\t}\n\n\t\treturn size;\n\n\t}\n\n\t/**\n\t * Stores the vertical index of a stack so that the same\n\t * vertical slide can be selected when navigating to and\n\t * from the stack.\n\t *\n\t * @param {HTMLElement} stack The vertical stack element\n\t * @param {string|number} [v=0] Index to memorize\n\t */\n\tfunction setPreviousVerticalIndex( stack, v ) {\n\n\t\tif( typeof stack === 'object' && typeof stack.setAttribute === 'function' ) {\n\t\t\tstack.setAttribute( 'data-previous-indexv', v || 0 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Retrieves the vertical index which was stored using\n\t * #setPreviousVerticalIndex() or 0 if no previous index\n\t * exists.\n\t *\n\t * @param {HTMLElement} stack The vertical stack element\n\t */\n\tfunction getPreviousVerticalIndex( stack ) {\n\n\t\tif( typeof stack === 'object' && typeof stack.setAttribute === 'function' && stack.classList.contains( 'stack' ) ) {\n\t\t\t// Prefer manually defined start-indexv\n\t\t\tconst attributeName = stack.hasAttribute( 'data-start-indexv' ) ? 'data-start-indexv' : 'data-previous-indexv';\n\n\t\t\treturn parseInt( stack.getAttribute( attributeName ) || 0, 10 );\n\t\t}\n\n\t\treturn 0;\n\n\t}\n\n\t/**\n\t * Checks if the current or specified slide is vertical\n\t * (nested within another slide).\n\t *\n\t * @param {HTMLElement} [slide=currentSlide] The slide to check\n\t * orientation of\n\t * @return {Boolean}\n\t */\n\tfunction isVerticalSlide( slide = currentSlide ) {\n\n\t\treturn slide && slide.parentNode && !!slide.parentNode.nodeName.match( /section/i );\n\n\t}\n\n\t/**\n\t * Checks if the current or specified slide is a stack containing\n\t * vertical slides.\n\t *\n\t * @param {HTMLElement} [slide=currentSlide]\n\t * @return {Boolean}\n\t */\n\tfunction isVerticalStack( slide = currentSlide ) {\n\n\t\treturn slide.classList.contains( '.stack' ) || slide.querySelector( 'section' ) !== null;\n\n\t}\n\n\t/**\n\t * Returns true if we're on the last slide in the current\n\t * vertical stack.\n\t */\n\tfunction isLastVerticalSlide() {\n\n\t\tif( currentSlide && isVerticalSlide( currentSlide ) ) {\n\t\t\t// Does this slide have a next sibling?\n\t\t\tif( currentSlide.nextElementSibling ) return false;\n\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\t/**\n\t * Returns true if we're currently on the first slide in\n\t * the presentation.\n\t */\n\tfunction isFirstSlide() {\n\n\t\treturn indexh === 0 && indexv === 0;\n\n\t}\n\n\t/**\n\t * Returns true if we're currently on the last slide in\n\t * the presenation. If the last slide is a stack, we only\n\t * consider this the last slide if it's at the end of the\n\t * stack.\n\t */\n\tfunction isLastSlide() {\n\n\t\tif( currentSlide ) {\n\t\t\t// Does this slide have a next sibling?\n\t\t\tif( currentSlide.nextElementSibling ) return false;\n\n\t\t\t// If it's vertical, does its parent have a next sibling?\n\t\t\tif( isVerticalSlide( currentSlide ) && currentSlide.parentNode.nextElementSibling ) return false;\n\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\t/**\n\t * Enters the paused mode which fades everything on screen to\n\t * black.\n\t */\n\tfunction pause() {\n\n\t\tif( config.pause ) {\n\t\t\tconst wasPaused = dom.wrapper.classList.contains( 'paused' );\n\n\t\t\tcancelAutoSlide();\n\t\t\tdom.wrapper.classList.add( 'paused' );\n\n\t\t\tif( wasPaused === false ) {\n\t\t\t\tdispatchEvent({ type: 'paused' });\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Exits from the paused mode.\n\t */\n\tfunction resume() {\n\n\t\tconst wasPaused = dom.wrapper.classList.contains( 'paused' );\n\t\tdom.wrapper.classList.remove( 'paused' );\n\n\t\tcueAutoSlide();\n\n\t\tif( wasPaused ) {\n\t\t\tdispatchEvent({ type: 'resumed' });\n\t\t}\n\n\t}\n\n\t/**\n\t * Toggles the paused mode on and off.\n\t */\n\tfunction togglePause( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? pause() : resume();\n\t\t}\n\t\telse {\n\t\t\tisPaused() ? resume() : pause();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if we are currently in the paused mode.\n\t *\n\t * @return {Boolean}\n\t */\n\tfunction isPaused() {\n\n\t\treturn dom.wrapper.classList.contains( 'paused' );\n\n\t}\n\n\t/**\n\t * Toggles visibility of the jump-to-slide UI.\n\t */\n\tfunction toggleJumpToSlide( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? jumpToSlide.show() : jumpToSlide.hide();\n\t\t}\n\t\telse {\n\t\t\tjumpToSlide.isVisible() ? jumpToSlide.hide() : jumpToSlide.show();\n\t\t}\n\n\t}\n\n\t/**\n\t * Toggles the auto slide mode on and off.\n\t *\n\t * @param {Boolean} [override] Flag which sets the desired state.\n\t * True means autoplay starts, false means it stops.\n\t */\n\n\tfunction toggleAutoSlide( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? resumeAutoSlide() : pauseAutoSlide();\n\t\t}\n\n\t\telse {\n\t\t\tautoSlidePaused ? resumeAutoSlide() : pauseAutoSlide();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if the auto slide mode is currently on.\n\t *\n\t * @return {Boolean}\n\t */\n\tfunction isAutoSliding() {\n\n\t\treturn !!( autoSlide && !autoSlidePaused );\n\n\t}\n\n\t/**\n\t * Steps from the current point in the presentation to the\n\t * slide which matches the specified horizontal and vertical\n\t * indices.\n\t *\n\t * @param {number} [h=indexh] Horizontal index of the target slide\n\t * @param {number} [v=indexv] Vertical index of the target slide\n\t * @param {number} [f] Index of a fragment within the\n\t * target slide to activate\n\t * @param {number} [origin] Origin for use in multimaster environments\n\t */\n\tfunction slide( h, v, f, origin ) {\n\n\t\t// Dispatch an event before the slide\n\t\tconst slidechange = dispatchEvent({\n\t\t\ttype: 'beforeslidechange',\n\t\t\tdata: {\n\t\t\t\tindexh: h === undefined ? indexh : h,\n\t\t\t\tindexv: v === undefined ? indexv : v,\n\t\t\t\torigin\n\t\t\t}\n\t\t});\n\n\t\t// Abort if this slide change was prevented by an event listener\n\t\tif( slidechange.defaultPrevented ) return;\n\n\t\t// Remember where we were at before\n\t\tpreviousSlide = currentSlide;\n\n\t\t// Query all horizontal slides in the deck\n\t\tconst horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );\n\n\t\t// If we're in scroll mode, we scroll the target slide into view\n\t\t// instead of running our standard slide transition\n\t\tif( scrollView.isActive() ) {\n\t\t\tconst scrollToSlide = scrollView.getSlideByIndices( h, v );\n\t\t\tif( scrollToSlide ) scrollView.scrollToSlide( scrollToSlide );\n\t\t\treturn;\n\t\t}\n\n\t\t// Abort if there are no slides\n\t\tif( horizontalSlides.length === 0 ) return;\n\n\t\t// If no vertical index is specified and the upcoming slide is a\n\t\t// stack, resume at its previous vertical index\n\t\tif( v === undefined && !overview.isActive() ) {\n\t\t\tv = getPreviousVerticalIndex( horizontalSlides[ h ] );\n\t\t}\n\n\t\t// If we were on a vertical stack, remember what vertical index\n\t\t// it was on so we can resume at the same position when returning\n\t\tif( previousSlide && previousSlide.parentNode && previousSlide.parentNode.classList.contains( 'stack' ) ) {\n\t\t\tsetPreviousVerticalIndex( previousSlide.parentNode, indexv );\n\t\t}\n\n\t\t// Remember the state before this slide\n\t\tconst stateBefore = state.concat();\n\n\t\t// Reset the state array\n\t\tstate.length = 0;\n\n\t\tlet indexhBefore = indexh || 0,\n\t\t\tindexvBefore = indexv || 0;\n\n\t\t// Activate and transition to the new slide\n\t\tindexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, h === undefined ? indexh : h );\n\t\tindexv = updateSlides( VERTICAL_SLIDES_SELECTOR, v === undefined ? indexv : v );\n\n\t\t// Dispatch an event if the slide changed\n\t\tlet slideChanged = ( indexh !== indexhBefore || indexv !== indexvBefore );\n\n\t\t// Ensure that the previous slide is never the same as the current\n\t\tif( !slideChanged ) previousSlide = null;\n\n\t\t// Find the current horizontal slide and any possible vertical slides\n\t\t// within it\n\t\tlet currentHorizontalSlide = horizontalSlides[ indexh ],\n\t\t\tcurrentVerticalSlides = currentHorizontalSlide.querySelectorAll( 'section' );\n\n\t\t// Store references to the previous and current slides\n\t\tcurrentSlide = currentVerticalSlides[ indexv ] || currentHorizontalSlide;\n\n\t\tlet autoAnimateTransition = false;\n\n\t\t// Detect if we're moving between two auto-animated slides\n\t\tif( slideChanged && previousSlide && currentSlide && !overview.isActive() ) {\n\t\t\ttransition = 'running';\n\n\t\t\tautoAnimateTransition = shouldAutoAnimateBetween( previousSlide, currentSlide, indexhBefore, indexvBefore );\n\n\t\t\t// If this is an auto-animated transition, we disable the\n\t\t\t// regular slide transition\n\t\t\t//\n\t\t\t// Note 20-03-2020:\n\t\t\t// This needs to happen before we update slide visibility,\n\t\t\t// otherwise transitions will still run in Safari.\n\t\t\tif( autoAnimateTransition ) {\n\t\t\t\tdom.slides.classList.add( 'disable-slide-transitions' )\n\t\t\t}\n\t\t}\n\n\t\t// Update the visibility of slides now that the indices have changed\n\t\tupdateSlidesVisibility();\n\n\t\tlayout();\n\n\t\t// Update the overview if it's currently active\n\t\tif( overview.isActive() ) {\n\t\t\toverview.update();\n\t\t}\n\n\t\t// Show fragment, if specified\n\t\tif( typeof f !== 'undefined' ) {\n\t\t\tfragments.goto( f );\n\t\t}\n\n\t\t// Solves an edge case where the previous slide maintains the\n\t\t// 'present' class when navigating between adjacent vertical\n\t\t// stacks\n\t\tif( previousSlide && previousSlide !== currentSlide ) {\n\t\t\tpreviousSlide.classList.remove( 'present' );\n\t\t\tpreviousSlide.setAttribute( 'aria-hidden', 'true' );\n\n\t\t\t// Reset all slides upon navigate to home\n\t\t\tif( isFirstSlide() ) {\n\t\t\t\t// Launch async task\n\t\t\t\tsetTimeout( () => {\n\t\t\t\t\tgetVerticalStacks().forEach( slide => {\n\t\t\t\t\t\tsetPreviousVerticalIndex( slide, 0 );\n\t\t\t\t\t} );\n\t\t\t\t}, 0 );\n\t\t\t}\n\t\t}\n\n\t\t// Apply the new state\n\t\tstateLoop: for( let i = 0, len = state.length; i < len; i++ ) {\n\t\t\t// Check if this state existed on the previous slide. If it\n\t\t\t// did, we will avoid adding it repeatedly\n\t\t\tfor( let j = 0; j < stateBefore.length; j++ ) {\n\t\t\t\tif( stateBefore[j] === state[i] ) {\n\t\t\t\t\tstateBefore.splice( j, 1 );\n\t\t\t\t\tcontinue stateLoop;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tdom.viewport.classList.add( state[i] );\n\n\t\t\t// Dispatch custom event matching the state's name\n\t\t\tdispatchEvent({ type: state[i] });\n\t\t}\n\n\t\t// Clean up the remains of the previous state\n\t\twhile( stateBefore.length ) {\n\t\t\tdom.viewport.classList.remove( stateBefore.pop() );\n\t\t}\n\n\t\tif( slideChanged ) {\n\t\t\tdispatchSlideChanged( origin );\n\t\t}\n\n\t\t// Handle embedded content\n\t\tif( slideChanged || !previousSlide ) {\n\t\t\tslideContent.stopEmbeddedContent( previousSlide );\n\t\t\tslideContent.startEmbeddedContent( currentSlide );\n\t\t}\n\n\t\t// Announce the current slide contents to screen readers\n\t\t// Use animation frame to prevent getComputedStyle in getStatusText\n\t\t// from triggering layout mid-frame\n\t\trequestAnimationFrame( () => {\n\t\t\tannounceStatus( getStatusText( currentSlide ) );\n\t\t});\n\n\t\tprogress.update();\n\t\tcontrols.update();\n\t\tnotes.update();\n\t\tbackgrounds.update();\n\t\tbackgrounds.updateParallax();\n\t\tslideNumber.update();\n\t\tfragments.update();\n\n\t\t// Update the URL hash\n\t\tlocation.writeURL();\n\n\t\tcueAutoSlide();\n\n\t\t// Auto-animation\n\t\tif( autoAnimateTransition ) {\n\n\t\t\tsetTimeout( () => {\n\t\t\t\tdom.slides.classList.remove( 'disable-slide-transitions' );\n\t\t\t}, 0 );\n\n\t\t\tif( config.autoAnimate ) {\n\t\t\t\t// Run the auto-animation between our slides\n\t\t\t\tautoAnimate.run( previousSlide, currentSlide );\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks whether or not an auto-animation should take place between\n\t * the two given slides.\n\t *\n\t * @param {HTMLElement} fromSlide\n\t * @param {HTMLElement} toSlide\n\t * @param {number} indexhBefore\n\t * @param {number} indexvBefore\n\t *\n\t * @returns {boolean}\n\t */\n\tfunction shouldAutoAnimateBetween( fromSlide, toSlide, indexhBefore, indexvBefore ) {\n\n\t\treturn \tfromSlide.hasAttribute( 'data-auto-animate' ) && toSlide.hasAttribute( 'data-auto-animate' ) &&\n\t\t\t\tfromSlide.getAttribute( 'data-auto-animate-id' ) === toSlide.getAttribute( 'data-auto-animate-id' ) &&\n\t\t\t\t!( ( indexh > indexhBefore || indexv > indexvBefore ) ? toSlide : fromSlide ).hasAttribute( 'data-auto-animate-restart' );\n\n\t}\n\n\t/**\n\t * Called anytime a new slide should be activated while in the scroll\n\t * view. The active slide is the page that occupies the most space in\n\t * the scrollable viewport.\n\t *\n\t * @param {number} pageIndex\n\t * @param {HTMLElement} slideElement\n\t */\n\tfunction setCurrentScrollPage( slideElement, h, v ) {\n\n\t\tlet indexhBefore = indexh || 0;\n\n\t\tindexh = h;\n\t\tindexv = v;\n\n\t\tconst slideChanged = currentSlide !== slideElement;\n\n\t\tpreviousSlide = currentSlide;\n\t\tcurrentSlide = slideElement;\n\n\t\tif( currentSlide && previousSlide ) {\n\t\t\tif( config.autoAnimate && shouldAutoAnimateBetween( previousSlide, currentSlide, indexhBefore, indexv ) ) {\n\t\t\t\t// Run the auto-animation between our slides\n\t\t\t\tautoAnimate.run( previousSlide, currentSlide );\n\t\t\t}\n\t\t}\n\n\t\t// Start or stop embedded content like videos and iframes\n\t\tif( slideChanged ) {\n\t\t\tif( previousSlide ) {\n\t\t\t\tslideContent.stopEmbeddedContent( previousSlide );\n\t\t\t\tslideContent.stopEmbeddedContent( previousSlide.slideBackgroundElement );\n\t\t\t}\n\n\t\t\tslideContent.startEmbeddedContent( currentSlide );\n\t\t\tslideContent.startEmbeddedContent( currentSlide.slideBackgroundElement );\n\t\t}\n\n\t\trequestAnimationFrame( () => {\n\t\t\tannounceStatus( getStatusText( currentSlide ) );\n\t\t});\n\n\t\tdispatchSlideChanged();\n\n\t}\n\n\t/**\n\t * Syncs the presentation with the current DOM. Useful\n\t * when new slides or control elements are added or when\n\t * the configuration has changed.\n\t */\n\tfunction sync() {\n\n\t\t// Subscribe to input\n\t\tremoveEventListeners();\n\t\taddEventListeners();\n\n\t\t// Force a layout to make sure the current config is accounted for\n\t\tlayout();\n\n\t\t// Reflect the current autoSlide value\n\t\tautoSlide = config.autoSlide;\n\n\t\t// Start auto-sliding if it's enabled\n\t\tcueAutoSlide();\n\n\t\t// Re-create all slide backgrounds\n\t\tbackgrounds.create();\n\n\t\t// Write the current hash to the URL\n\t\tlocation.writeURL();\n\n\t\tif( config.sortFragmentsOnSync === true ) {\n\t\t\tfragments.sortAll();\n\t\t}\n\n\t\tcontrols.update();\n\t\tprogress.update();\n\n\t\tupdateSlidesVisibility();\n\n\t\tnotes.update();\n\t\tnotes.updateVisibility();\n\t\tbackgrounds.update( true );\n\t\tslideNumber.update();\n\t\tslideContent.formatEmbeddedContent();\n\n\t\t// Start or stop embedded content depending on global config\n\t\tif( config.autoPlayMedia === false ) {\n\t\t\tslideContent.stopEmbeddedContent( currentSlide, { unloadIframes: false } );\n\t\t}\n\t\telse {\n\t\t\tslideContent.startEmbeddedContent( currentSlide );\n\t\t}\n\n\t\tif( overview.isActive() ) {\n\t\t\toverview.layout();\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates reveal.js to keep in sync with new slide attributes. For\n\t * example, if you add a new `data-background-image` you can call\n\t * this to have reveal.js render the new background image.\n\t *\n\t * Similar to #sync() but more efficient when you only need to\n\t * refresh a specific slide.\n\t *\n\t * @param {HTMLElement} slide\n\t */\n\tfunction syncSlide( slide = currentSlide ) {\n\n\t\tbackgrounds.sync( slide );\n\t\tfragments.sync( slide );\n\n\t\tslideContent.load( slide );\n\n\t\tbackgrounds.update();\n\t\tnotes.update();\n\n\t}\n\n\t/**\n\t * Resets all vertical slides so that only the first\n\t * is visible.\n\t */\n\tfunction resetVerticalSlides() {\n\n\t\tgetHorizontalSlides().forEach( horizontalSlide => {\n\n\t\t\tUtil.queryAll( horizontalSlide, 'section' ).forEach( ( verticalSlide, y ) => {\n\n\t\t\t\tif( y > 0 ) {\n\t\t\t\t\tverticalSlide.classList.remove( 'present' );\n\t\t\t\t\tverticalSlide.classList.remove( 'past' );\n\t\t\t\t\tverticalSlide.classList.add( 'future' );\n\t\t\t\t\tverticalSlide.setAttribute( 'aria-hidden', 'true' );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Randomly shuffles all slides in the deck.\n\t */\n\tfunction shuffle( slides = getHorizontalSlides() ) {\n\n\t\tslides.forEach( ( slide, i ) => {\n\n\t\t\t// Insert the slide next to a randomly picked sibling slide\n\t\t\t// slide. This may cause the slide to insert before itself,\n\t\t\t// but that's not an issue.\n\t\t\tlet beforeSlide = slides[ Math.floor( Math.random() * slides.length ) ];\n\t\t\tif( beforeSlide.parentNode === slide.parentNode ) {\n\t\t\t\tslide.parentNode.insertBefore( slide, beforeSlide );\n\t\t\t}\n\n\t\t\t// Randomize the order of vertical slides (if there are any)\n\t\t\tlet verticalSlides = slide.querySelectorAll( 'section' );\n\t\t\tif( verticalSlides.length ) {\n\t\t\t\tshuffle( verticalSlides );\n\t\t\t}\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Updates one dimension of slides by showing the slide\n\t * with the specified index.\n\t *\n\t * @param {string} selector A CSS selector that will fetch\n\t * the group of slides we are working with\n\t * @param {number} index The index of the slide that should be\n\t * shown\n\t *\n\t * @return {number} The index of the slide that is now shown,\n\t * might differ from the passed in index if it was out of\n\t * bounds.\n\t */\n\tfunction updateSlides( selector, index ) {\n\n\t\t// Select all slides and convert the NodeList result to\n\t\t// an array\n\t\tlet slides = Util.queryAll( dom.wrapper, selector ),\n\t\t\tslidesLength = slides.length;\n\n\t\tlet printMode = scrollView.isActive() || printView.isActive();\n\t\tlet loopedForwards = false;\n\t\tlet loopedBackwards = false;\n\n\t\tif( slidesLength ) {\n\n\t\t\t// Should the index loop?\n\t\t\tif( config.loop ) {\n\t\t\t\tif( index >= slidesLength ) loopedForwards = true;\n\n\t\t\t\tindex %= slidesLength;\n\n\t\t\t\tif( index < 0 ) {\n\t\t\t\t\tindex = slidesLength + index;\n\t\t\t\t\tloopedBackwards = true;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Enforce max and minimum index bounds\n\t\t\tindex = Math.max( Math.min( index, slidesLength - 1 ), 0 );\n\n\t\t\tfor( let i = 0; i < slidesLength; i++ ) {\n\t\t\t\tlet element = slides[i];\n\n\t\t\t\tlet reverse = config.rtl && !isVerticalSlide( element );\n\n\t\t\t\t// Avoid .remove() with multiple args for IE11 support\n\t\t\t\telement.classList.remove( 'past' );\n\t\t\t\telement.classList.remove( 'present' );\n\t\t\t\telement.classList.remove( 'future' );\n\n\t\t\t\t// http://www.w3.org/html/wg/drafts/html/master/editing.html#the-hidden-attribute\n\t\t\t\telement.setAttribute( 'hidden', '' );\n\t\t\t\telement.setAttribute( 'aria-hidden', 'true' );\n\n\t\t\t\t// If this element contains vertical slides\n\t\t\t\tif( element.querySelector( 'section' ) ) {\n\t\t\t\t\telement.classList.add( 'stack' );\n\t\t\t\t}\n\n\t\t\t\t// If we're printing static slides, all slides are \"present\"\n\t\t\t\tif( printMode ) {\n\t\t\t\t\telement.classList.add( 'present' );\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif( i < index ) {\n\t\t\t\t\t// Any element previous to index is given the 'past' class\n\t\t\t\t\telement.classList.add( reverse ? 'future' : 'past' );\n\n\t\t\t\t\tif( config.fragments ) {\n\t\t\t\t\t\t// Show all fragments in prior slides\n\t\t\t\t\t\tshowFragmentsIn( element );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse if( i > index ) {\n\t\t\t\t\t// Any element subsequent to index is given the 'future' class\n\t\t\t\t\telement.classList.add( reverse ? 'past' : 'future' );\n\n\t\t\t\t\tif( config.fragments ) {\n\t\t\t\t\t\t// Hide all fragments in future slides\n\t\t\t\t\t\thideFragmentsIn( element );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Update the visibility of fragments when a presentation loops\n\t\t\t\t// in either direction\n\t\t\t\telse if( i === index && config.fragments ) {\n\t\t\t\t\tif( loopedForwards ) {\n\t\t\t\t\t\thideFragmentsIn( element );\n\t\t\t\t\t}\n\t\t\t\t\telse if( loopedBackwards ) {\n\t\t\t\t\t\tshowFragmentsIn( element );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tlet slide = slides[index];\n\t\t\tlet wasPresent = slide.classList.contains( 'present' );\n\n\t\t\t// Mark the current slide as present\n\t\t\tslide.classList.add( 'present' );\n\t\t\tslide.removeAttribute( 'hidden' );\n\t\t\tslide.removeAttribute( 'aria-hidden' );\n\n\t\t\tif( !wasPresent ) {\n\t\t\t\t// Dispatch an event indicating the slide is now visible\n\t\t\t\tdispatchEvent({\n\t\t\t\t\ttarget: slide,\n\t\t\t\t\ttype: 'visible',\n\t\t\t\t\tbubbles: false\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// If this slide has a state associated with it, add it\n\t\t\t// onto the current state of the deck\n\t\t\tlet slideState = slide.getAttribute( 'data-state' );\n\t\t\tif( slideState ) {\n\t\t\t\tstate = state.concat( slideState.split( ' ' ) );\n\t\t\t}\n\n\t\t}\n\t\telse {\n\t\t\t// Since there are no slides we can't be anywhere beyond the\n\t\t\t// zeroth index\n\t\t\tindex = 0;\n\t\t}\n\n\t\treturn index;\n\n\t}\n\n\t/**\n\t * Shows all fragment elements within the given contaienr.\n\t */\n\tfunction showFragmentsIn( container ) {\n\n\t\tUtil.queryAll( container, '.fragment' ).forEach( fragment => {\n\t\t\tfragment.classList.add( 'visible' );\n\t\t\tfragment.classList.remove( 'current-fragment' );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Hides all fragment elements within the given contaienr.\n\t */\n\tfunction hideFragmentsIn( container ) {\n\n\t\tUtil.queryAll( container, '.fragment.visible' ).forEach( fragment => {\n\t\t\tfragment.classList.remove( 'visible', 'current-fragment' );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Optimization method; hide all slides that are far away\n\t * from the present slide.\n\t */\n\tfunction updateSlidesVisibility() {\n\n\t\t// Select all slides and convert the NodeList result to\n\t\t// an array\n\t\tlet horizontalSlides = getHorizontalSlides(),\n\t\t\thorizontalSlidesLength = horizontalSlides.length,\n\t\t\tdistanceX,\n\t\t\tdistanceY;\n\n\t\tif( horizontalSlidesLength && typeof indexh !== 'undefined' ) {\n\n\t\t\t// The number of steps away from the present slide that will\n\t\t\t// be visible\n\t\t\tlet viewDistance = overview.isActive() ? 10 : config.viewDistance;\n\n\t\t\t// Shorten the view distance on devices that typically have\n\t\t\t// less resources\n\t\t\tif( Device.isMobile ) {\n\t\t\t\tviewDistance = overview.isActive() ? 6 : config.mobileViewDistance;\n\t\t\t}\n\n\t\t\t// All slides need to be visible when exporting to PDF\n\t\t\tif( printView.isActive() ) {\n\t\t\t\tviewDistance = Number.MAX_VALUE;\n\t\t\t}\n\n\t\t\tfor( let x = 0; x < horizontalSlidesLength; x++ ) {\n\t\t\t\tlet horizontalSlide = horizontalSlides[x];\n\n\t\t\t\tlet verticalSlides = Util.queryAll( horizontalSlide, 'section' ),\n\t\t\t\t\tverticalSlidesLength = verticalSlides.length;\n\n\t\t\t\t// Determine how far away this slide is from the present\n\t\t\t\tdistanceX = Math.abs( ( indexh || 0 ) - x ) || 0;\n\n\t\t\t\t// If the presentation is looped, distance should measure\n\t\t\t\t// 1 between the first and last slides\n\t\t\t\tif( config.loop ) {\n\t\t\t\t\tdistanceX = Math.abs( ( ( indexh || 0 ) - x ) % ( horizontalSlidesLength - viewDistance ) ) || 0;\n\t\t\t\t}\n\n\t\t\t\t// Show the horizontal slide if it's within the view distance\n\t\t\t\tif( distanceX < viewDistance ) {\n\t\t\t\t\tslideContent.load( horizontalSlide );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tslideContent.unload( horizontalSlide );\n\t\t\t\t}\n\n\t\t\t\tif( verticalSlidesLength ) {\n\n\t\t\t\t\tlet oy = getPreviousVerticalIndex( horizontalSlide );\n\n\t\t\t\t\tfor( let y = 0; y < verticalSlidesLength; y++ ) {\n\t\t\t\t\t\tlet verticalSlide = verticalSlides[y];\n\n\t\t\t\t\t\tdistanceY = x === ( indexh || 0 ) ? Math.abs( ( indexv || 0 ) - y ) : Math.abs( y - oy );\n\n\t\t\t\t\t\tif( distanceX + distanceY < viewDistance ) {\n\t\t\t\t\t\t\tslideContent.load( verticalSlide );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tslideContent.unload( verticalSlide );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Flag if there are ANY vertical slides, anywhere in the deck\n\t\t\tif( hasVerticalSlides() ) {\n\t\t\t\tdom.wrapper.classList.add( 'has-vertical-slides' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tdom.wrapper.classList.remove( 'has-vertical-slides' );\n\t\t\t}\n\n\t\t\t// Flag if there are ANY horizontal slides, anywhere in the deck\n\t\t\tif( hasHorizontalSlides() ) {\n\t\t\t\tdom.wrapper.classList.add( 'has-horizontal-slides' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tdom.wrapper.classList.remove( 'has-horizontal-slides' );\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Determine what available routes there are for navigation.\n\t *\n\t * @return {{left: boolean, right: boolean, up: boolean, down: boolean}}\n\t */\n\tfunction availableRoutes({ includeFragments = false } = {}) {\n\n\t\tlet horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),\n\t\t\tverticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR );\n\n\t\tlet routes = {\n\t\t\tleft: indexh > 0,\n\t\t\tright: indexh < horizontalSlides.length - 1,\n\t\t\tup: indexv > 0,\n\t\t\tdown: indexv < verticalSlides.length - 1\n\t\t};\n\n\t\t// Looped presentations can always be navigated as long as\n\t\t// there are slides available\n\t\tif( config.loop ) {\n\t\t\tif( horizontalSlides.length > 1 ) {\n\t\t\t\troutes.left = true;\n\t\t\t\troutes.right = true;\n\t\t\t}\n\n\t\t\tif( verticalSlides.length > 1 ) {\n\t\t\t\troutes.up = true;\n\t\t\t\troutes.down = true;\n\t\t\t}\n\t\t}\n\n\t\tif ( horizontalSlides.length > 1 && config.navigationMode === 'linear' ) {\n\t\t\troutes.right = routes.right || routes.down;\n\t\t\troutes.left = routes.left || routes.up;\n\t\t}\n\n\t\t// If includeFragments is set, a route will be considered\n\t\t// available if either a slid OR fragment is available in\n\t\t// the given direction\n\t\tif( includeFragments === true ) {\n\t\t\tlet fragmentRoutes = fragments.availableRoutes();\n\t\t\troutes.left = routes.left || fragmentRoutes.prev;\n\t\t\troutes.up = routes.up || fragmentRoutes.prev;\n\t\t\troutes.down = routes.down || fragmentRoutes.next;\n\t\t\troutes.right = routes.right || fragmentRoutes.next;\n\t\t}\n\n\t\t// Reverse horizontal controls for rtl\n\t\tif( config.rtl ) {\n\t\t\tlet left = routes.left;\n\t\t\troutes.left = routes.right;\n\t\t\troutes.right = left;\n\t\t}\n\n\t\treturn routes;\n\n\t}\n\n\t/**\n\t * Returns the number of past slides. This can be used as a global\n\t * flattened index for slides.\n\t *\n\t * @param {HTMLElement} [slide=currentSlide] The slide we're counting before\n\t *\n\t * @return {number} Past slide count\n\t */\n\tfunction getSlidePastCount( slide = currentSlide ) {\n\n\t\tlet horizontalSlides = getHorizontalSlides();\n\n\t\t// The number of past slides\n\t\tlet pastCount = 0;\n\n\t\t// Step through all slides and count the past ones\n\t\tmainLoop: for( let i = 0; i < horizontalSlides.length; i++ ) {\n\n\t\t\tlet horizontalSlide = horizontalSlides[i];\n\t\t\tlet verticalSlides = horizontalSlide.querySelectorAll( 'section' );\n\n\t\t\tfor( let j = 0; j < verticalSlides.length; j++ ) {\n\n\t\t\t\t// Stop as soon as we arrive at the present\n\t\t\t\tif( verticalSlides[j] === slide ) {\n\t\t\t\t\tbreak mainLoop;\n\t\t\t\t}\n\n\t\t\t\t// Don't count slides with the \"uncounted\" class\n\t\t\t\tif( verticalSlides[j].dataset.visibility !== 'uncounted' ) {\n\t\t\t\t\tpastCount++;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\t// Stop as soon as we arrive at the present\n\t\t\tif( horizontalSlide === slide ) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\t// Don't count the wrapping section for vertical slides and\n\t\t\t// slides marked as uncounted\n\t\t\tif( horizontalSlide.classList.contains( 'stack' ) === false && horizontalSlide.dataset.visibility !== 'uncounted' ) {\n\t\t\t\tpastCount++;\n\t\t\t}\n\n\t\t}\n\n\t\treturn pastCount;\n\n\t}\n\n\t/**\n\t * Returns a value ranging from 0-1 that represents\n\t * how far into the presentation we have navigated.\n\t *\n\t * @return {number}\n\t */\n\tfunction getProgress() {\n\n\t\t// The number of past and total slides\n\t\tlet totalCount = getTotalSlides();\n\t\tlet pastCount = getSlidePastCount();\n\n\t\tif( currentSlide ) {\n\n\t\t\tlet allFragments = currentSlide.querySelectorAll( '.fragment' );\n\n\t\t\t// If there are fragments in the current slide those should be\n\t\t\t// accounted for in the progress.\n\t\t\tif( allFragments.length > 0 ) {\n\t\t\t\tlet visibleFragments = currentSlide.querySelectorAll( '.fragment.visible' );\n\n\t\t\t\t// This value represents how big a portion of the slide progress\n\t\t\t\t// that is made up by its fragments (0-1)\n\t\t\t\tlet fragmentWeight = 0.9;\n\n\t\t\t\t// Add fragment progress to the past slide count\n\t\t\t\tpastCount += ( visibleFragments.length / allFragments.length ) * fragmentWeight;\n\t\t\t}\n\n\t\t}\n\n\t\treturn Math.min( pastCount / ( totalCount - 1 ), 1 );\n\n\t}\n\n\t/**\n\t * Retrieves the h/v location and fragment of the current,\n\t * or specified, slide.\n\t *\n\t * @param {HTMLElement} [slide] If specified, the returned\n\t * index will be for this slide rather than the currently\n\t * active one\n\t *\n\t * @return {{h: number, v: number, f: number}}\n\t */\n\tfunction getIndices( slide ) {\n\n\t\t// By default, return the current indices\n\t\tlet h = indexh,\n\t\t\tv = indexv,\n\t\t\tf;\n\n\t\t// If a slide is specified, return the indices of that slide\n\t\tif( slide ) {\n\t\t\t// In scroll mode the original h/x index is stored on the slide\n\t\t\tif( scrollView.isActive() ) {\n\t\t\t\th = parseInt( slide.getAttribute( 'data-index-h' ), 10 );\n\n\t\t\t\tif( slide.getAttribute( 'data-index-v' ) ) {\n\t\t\t\t\tv = parseInt( slide.getAttribute( 'data-index-v' ), 10 );\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\tlet isVertical = isVerticalSlide( slide );\n\t\t\t\tlet slideh = isVertical ? slide.parentNode : slide;\n\n\t\t\t\t// Select all horizontal slides\n\t\t\t\tlet horizontalSlides = getHorizontalSlides();\n\n\t\t\t\t// Now that we know which the horizontal slide is, get its index\n\t\t\t\th = Math.max( horizontalSlides.indexOf( slideh ), 0 );\n\n\t\t\t\t// Assume we're not vertical\n\t\t\t\tv = undefined;\n\n\t\t\t\t// If this is a vertical slide, grab the vertical index\n\t\t\t\tif( isVertical ) {\n\t\t\t\t\tv = Math.max( Util.queryAll( slide.parentNode, 'section' ).indexOf( slide ), 0 );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif( !slide && currentSlide ) {\n\t\t\tlet hasFragments = currentSlide.querySelectorAll( '.fragment' ).length > 0;\n\t\t\tif( hasFragments ) {\n\t\t\t\tlet currentFragment = currentSlide.querySelector( '.current-fragment' );\n\t\t\t\tif( currentFragment && currentFragment.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\t\tf = parseInt( currentFragment.getAttribute( 'data-fragment-index' ), 10 );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tf = currentSlide.querySelectorAll( '.fragment.visible' ).length - 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn { h, v, f };\n\n\t}\n\n\t/**\n\t * Retrieves all slides in this presentation.\n\t */\n\tfunction getSlides() {\n\n\t\treturn Util.queryAll( dom.wrapper, SLIDES_SELECTOR + ':not(.stack):not([data-visibility=\"uncounted\"])' );\n\n\t}\n\n\t/**\n\t * Returns a list of all horizontal slides in the deck. Each\n\t * vertical stack is included as one horizontal slide in the\n\t * resulting array.\n\t */\n\tfunction getHorizontalSlides() {\n\n\t\treturn Util.queryAll( dom.wrapper, HORIZONTAL_SLIDES_SELECTOR );\n\n\t}\n\n\t/**\n\t * Returns all vertical slides that exist within this deck.\n\t */\n\tfunction getVerticalSlides() {\n\n\t\treturn Util.queryAll( dom.wrapper, '.slides>section>section' );\n\n\t}\n\n\t/**\n\t * Returns all vertical stacks (each stack can contain multiple slides).\n\t */\n\tfunction getVerticalStacks() {\n\n\t\treturn Util.queryAll( dom.wrapper, HORIZONTAL_SLIDES_SELECTOR + '.stack');\n\n\t}\n\n\t/**\n\t * Returns true if there are at least two horizontal slides.\n\t */\n\tfunction hasHorizontalSlides() {\n\n\t\treturn getHorizontalSlides().length > 1;\n\t}\n\n\t/**\n\t * Returns true if there are at least two vertical slides.\n\t */\n\tfunction hasVerticalSlides() {\n\n\t\treturn getVerticalSlides().length > 1;\n\n\t}\n\n\t/**\n\t * Returns an array of objects where each object represents the\n\t * attributes on its respective slide.\n\t */\n\tfunction getSlidesAttributes() {\n\n\t\treturn getSlides().map( slide => {\n\n\t\t\tlet attributes = {};\n\t\t\tfor( let i = 0; i < slide.attributes.length; i++ ) {\n\t\t\t\tlet attribute = slide.attributes[ i ];\n\t\t\t\tattributes[ attribute.name ] = attribute.value;\n\t\t\t}\n\t\t\treturn attributes;\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Retrieves the total number of slides in this presentation.\n\t *\n\t * @return {number}\n\t */\n\tfunction getTotalSlides() {\n\n\t\treturn getSlides().length;\n\n\t}\n\n\t/**\n\t * Returns the slide element matching the specified index.\n\t *\n\t * @return {HTMLElement}\n\t */\n\tfunction getSlide( x, y ) {\n\n\t\tlet horizontalSlide = getHorizontalSlides()[ x ];\n\t\tlet verticalSlides = horizontalSlide && horizontalSlide.querySelectorAll( 'section' );\n\n\t\tif( verticalSlides && verticalSlides.length && typeof y === 'number' ) {\n\t\t\treturn verticalSlides ? verticalSlides[ y ] : undefined;\n\t\t}\n\n\t\treturn horizontalSlide;\n\n\t}\n\n\t/**\n\t * Returns the background element for the given slide.\n\t * All slides, even the ones with no background properties\n\t * defined, have a background element so as long as the\n\t * index is valid an element will be returned.\n\t *\n\t * @param {mixed} x Horizontal background index OR a slide\n\t * HTML element\n\t * @param {number} y Vertical background index\n\t * @return {(HTMLElement[]|*)}\n\t */\n\tfunction getSlideBackground( x, y ) {\n\n\t\tlet slide = typeof x === 'number' ? getSlide( x, y ) : x;\n\t\tif( slide ) {\n\t\t\treturn slide.slideBackgroundElement;\n\t\t}\n\n\t\treturn undefined;\n\n\t}\n\n\t/**\n\t * Retrieves the current state of the presentation as\n\t * an object. This state can then be restored at any\n\t * time.\n\t *\n\t * @return {{indexh: number, indexv: number, indexf: number, paused: boolean, overview: boolean}}\n\t */\n\tfunction getState() {\n\n\t\tlet indices = getIndices();\n\n\t\treturn {\n\t\t\tindexh: indices.h,\n\t\t\tindexv: indices.v,\n\t\t\tindexf: indices.f,\n\t\t\tpaused: isPaused(),\n\t\t\toverview: overview.isActive()\n\t\t};\n\n\t}\n\n\t/**\n\t * Restores the presentation to the given state.\n\t *\n\t * @param {object} state As generated by getState()\n\t * @see {@link getState} generates the parameter `state`\n\t */\n\tfunction setState( state ) {\n\n\t\tif( typeof state === 'object' ) {\n\t\t\tslide( Util.deserialize( state.indexh ), Util.deserialize( state.indexv ), Util.deserialize( state.indexf ) );\n\n\t\t\tlet pausedFlag = Util.deserialize( state.paused ),\n\t\t\t\toverviewFlag = Util.deserialize( state.overview );\n\n\t\t\tif( typeof pausedFlag === 'boolean' && pausedFlag !== isPaused() ) {\n\t\t\t\ttogglePause( pausedFlag );\n\t\t\t}\n\n\t\t\tif( typeof overviewFlag === 'boolean' && overviewFlag !== overview.isActive() ) {\n\t\t\t\toverview.toggle( overviewFlag );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Cues a new automated slide if enabled in the config.\n\t */\n\tfunction cueAutoSlide() {\n\n\t\tcancelAutoSlide();\n\n\t\tif( currentSlide && config.autoSlide !== false ) {\n\n\t\t\tlet fragment = currentSlide.querySelector( '.current-fragment[data-autoslide]' );\n\n\t\t\tlet fragmentAutoSlide = fragment ? fragment.getAttribute( 'data-autoslide' ) : null;\n\t\t\tlet parentAutoSlide = currentSlide.parentNode ? currentSlide.parentNode.getAttribute( 'data-autoslide' ) : null;\n\t\t\tlet slideAutoSlide = currentSlide.getAttribute( 'data-autoslide' );\n\n\t\t\t// Pick value in the following priority order:\n\t\t\t// 1. Current fragment's data-autoslide\n\t\t\t// 2. Current slide's data-autoslide\n\t\t\t// 3. Parent slide's data-autoslide\n\t\t\t// 4. Global autoSlide setting\n\t\t\tif( fragmentAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( fragmentAutoSlide, 10 );\n\t\t\t}\n\t\t\telse if( slideAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( slideAutoSlide, 10 );\n\t\t\t}\n\t\t\telse if( parentAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( parentAutoSlide, 10 );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tautoSlide = config.autoSlide;\n\n\t\t\t\t// If there are media elements with data-autoplay,\n\t\t\t\t// automatically set the autoSlide duration to the\n\t\t\t\t// length of that media. Not applicable if the slide\n\t\t\t\t// is divided up into fragments.\n\t\t\t\t// playbackRate is accounted for in the duration.\n\t\t\t\tif( currentSlide.querySelectorAll( '.fragment' ).length === 0 ) {\n\t\t\t\t\tUtil.queryAll( currentSlide, 'video, audio' ).forEach( el => {\n\t\t\t\t\t\tif( el.hasAttribute( 'data-autoplay' ) ) {\n\t\t\t\t\t\t\tif( autoSlide && (el.duration * 1000 / el.playbackRate ) > autoSlide ) {\n\t\t\t\t\t\t\t\tautoSlide = ( el.duration * 1000 / el.playbackRate ) + 1000;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Cue the next auto-slide if:\n\t\t\t// - There is an autoSlide value\n\t\t\t// - Auto-sliding isn't paused by the user\n\t\t\t// - The presentation isn't paused\n\t\t\t// - The overview isn't active\n\t\t\t// - The presentation isn't over\n\t\t\tif( autoSlide && !autoSlidePaused && !isPaused() && !overview.isActive() && ( !isLastSlide() || fragments.availableRoutes().next || config.loop === true ) ) {\n\t\t\t\tautoSlideTimeout = setTimeout( () => {\n\t\t\t\t\tif( typeof config.autoSlideMethod === 'function' ) {\n\t\t\t\t\t\tconfig.autoSlideMethod()\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tnavigateNext();\n\t\t\t\t\t}\n\t\t\t\t\tcueAutoSlide();\n\t\t\t\t}, autoSlide );\n\t\t\t\tautoSlideStartTime = Date.now();\n\t\t\t}\n\n\t\t\tif( autoSlidePlayer ) {\n\t\t\t\tautoSlidePlayer.setPlaying( autoSlideTimeout !== -1 );\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Cancels any ongoing request to auto-slide.\n\t */\n\tfunction cancelAutoSlide() {\n\n\t\tclearTimeout( autoSlideTimeout );\n\t\tautoSlideTimeout = -1;\n\n\t}\n\n\tfunction pauseAutoSlide() {\n\n\t\tif( autoSlide && !autoSlidePaused ) {\n\t\t\tautoSlidePaused = true;\n\t\t\tdispatchEvent({ type: 'autoslidepaused' });\n\t\t\tclearTimeout( autoSlideTimeout );\n\n\t\t\tif( autoSlidePlayer ) {\n\t\t\t\tautoSlidePlayer.setPlaying( false );\n\t\t\t}\n\t\t}\n\n\t}\n\n\tfunction resumeAutoSlide() {\n\n\t\tif( autoSlide && autoSlidePaused ) {\n\t\t\tautoSlidePaused = false;\n\t\t\tdispatchEvent({ type: 'autoslideresumed' });\n\t\t\tcueAutoSlide();\n\t\t}\n\n\t}\n\n\tfunction navigateLeft({skipFragments=false}={}) {\n\n\t\tnavigationHistory.hasNavigatedHorizontally = true;\n\n\t\t// Reverse for RTL\n\t\tif( config.rtl ) {\n\t\t\tif( ( overview.isActive() || skipFragments || fragments.next() === false ) && availableRoutes().left ) {\n\t\t\t\tslide( indexh + 1, config.navigationMode === 'grid' ? indexv : undefined );\n\t\t\t}\n\t\t}\n\t\t// Normal navigation\n\t\telse if( ( overview.isActive() || skipFragments || fragments.prev() === false ) && availableRoutes().left ) {\n\t\t\tslide( indexh - 1, config.navigationMode === 'grid' ? indexv : undefined );\n\t\t}\n\n\t}\n\n\tfunction navigateRight({skipFragments=false}={}) {\n\n\t\tnavigationHistory.hasNavigatedHorizontally = true;\n\n\t\t// Reverse for RTL\n\t\tif( config.rtl ) {\n\t\t\tif( ( overview.isActive() || skipFragments || fragments.prev() === false ) && availableRoutes().right ) {\n\t\t\t\tslide( indexh - 1, config.navigationMode === 'grid' ? indexv : undefined );\n\t\t\t}\n\t\t}\n\t\t// Normal navigation\n\t\telse if( ( overview.isActive() || skipFragments || fragments.next() === false ) && availableRoutes().right ) {\n\t\t\tslide( indexh + 1, config.navigationMode === 'grid' ? indexv : undefined );\n\t\t}\n\n\t}\n\n\tfunction navigateUp({skipFragments=false}={}) {\n\n\t\t// Prioritize hiding fragments\n\t\tif( ( overview.isActive() || skipFragments || fragments.prev() === false ) && availableRoutes().up ) {\n\t\t\tslide( indexh, indexv - 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateDown({skipFragments=false}={}) {\n\n\t\tnavigationHistory.hasNavigatedVertically = true;\n\n\t\t// Prioritize revealing fragments\n\t\tif( ( overview.isActive() || skipFragments || fragments.next() === false ) && availableRoutes().down ) {\n\t\t\tslide( indexh, indexv + 1 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Navigates backwards, prioritized in the following order:\n\t * 1) Previous fragment\n\t * 2) Previous vertical slide\n\t * 3) Previous horizontal slide\n\t */\n\tfunction navigatePrev({skipFragments=false}={}) {\n\n\t\t// Prioritize revealing fragments\n\t\tif( skipFragments || fragments.prev() === false ) {\n\t\t\tif( availableRoutes().up ) {\n\t\t\t\tnavigateUp({skipFragments});\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Fetch the previous horizontal slide, if there is one\n\t\t\t\tlet previousSlide;\n\n\t\t\t\tif( config.rtl ) {\n\t\t\t\t\tpreviousSlide = Util.queryAll( dom.wrapper, HORIZONTAL_SLIDES_SELECTOR + '.future' ).pop();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tpreviousSlide = Util.queryAll( dom.wrapper, HORIZONTAL_SLIDES_SELECTOR + '.past' ).pop();\n\t\t\t\t}\n\n\t\t\t\t// When going backwards and arriving on a stack we start\n\t\t\t\t// at the bottom of the stack\n\t\t\t\tif( previousSlide && previousSlide.classList.contains( 'stack' ) ) {\n\t\t\t\t\tlet v = ( previousSlide.querySelectorAll( 'section' ).length - 1 ) || undefined;\n\t\t\t\t\tlet h = indexh - 1;\n\t\t\t\t\tslide( h, v );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tnavigateLeft({skipFragments});\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * The reverse of #navigatePrev().\n\t */\n\tfunction navigateNext({skipFragments=false}={}) {\n\n\t\tnavigationHistory.hasNavigatedHorizontally = true;\n\t\tnavigationHistory.hasNavigatedVertically = true;\n\n\t\t// Prioritize revealing fragments\n\t\tif( skipFragments || fragments.next() === false ) {\n\n\t\t\tlet routes = availableRoutes();\n\n\t\t\t// When looping is enabled `routes.down` is always available\n\t\t\t// so we need a separate check for when we've reached the\n\t\t\t// end of a stack and should move horizontally\n\t\t\tif( routes.down && routes.right && config.loop && isLastVerticalSlide() ) {\n\t\t\t\troutes.down = false;\n\t\t\t}\n\n\t\t\tif( routes.down ) {\n\t\t\t\tnavigateDown({skipFragments});\n\t\t\t}\n\t\t\telse if( config.rtl ) {\n\t\t\t\tnavigateLeft({skipFragments});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tnavigateRight({skipFragments});\n\t\t\t}\n\t\t}\n\n\t}\n\n\n\t// --------------------------------------------------------------------//\n\t// ----------------------------- EVENTS -------------------------------//\n\t// --------------------------------------------------------------------//\n\n\t/**\n\t * Called by all event handlers that are based on user\n\t * input.\n\t *\n\t * @param {object} [event]\n\t */\n\tfunction onUserInput( event ) {\n\n\t\tif( config.autoSlideStoppable ) {\n\t\t\tpauseAutoSlide();\n\t\t}\n\n\t}\n\n\t/**\n\t* Listener for post message events posted to this window.\n\t*/\n\tfunction onPostMessage( event ) {\n\n\t\tlet data = event.data;\n\n\t\t// Make sure we're dealing with JSON\n\t\tif( typeof data === 'string' && data.charAt( 0 ) === '{' && data.charAt( data.length - 1 ) === '}' ) {\n\t\t\tdata = JSON.parse( data );\n\n\t\t\t// Check if the requested method can be found\n\t\t\tif( data.method && typeof Reveal[data.method] === 'function' ) {\n\n\t\t\t\tif( POST_MESSAGE_METHOD_BLACKLIST.test( data.method ) === false ) {\n\n\t\t\t\t\tconst result = Reveal[data.method].apply( Reveal, data.args );\n\n\t\t\t\t\t// Dispatch a postMessage event with the returned value from\n\t\t\t\t\t// our method invocation for getter functions\n\t\t\t\t\tdispatchPostMessage( 'callback', { method: data.method, result: result } );\n\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tconsole.warn( 'reveal.js: \"'+ data.method +'\" is is blacklisted from the postMessage API' );\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Event listener for transition end on the current slide.\n\t *\n\t * @param {object} [event]\n\t */\n\tfunction onTransitionEnd( event ) {\n\n\t\tif( transition === 'running' && /section/gi.test( event.target.nodeName ) ) {\n\t\t\ttransition = 'idle';\n\t\t\tdispatchEvent({\n\t\t\t\ttype: 'slidetransitionend',\n\t\t\t\tdata: { indexh, indexv, previousSlide, currentSlide }\n\t\t\t});\n\t\t}\n\n\t}\n\n\t/**\n\t * A global listener for all click events inside of the\n\t * .slides container.\n\t *\n\t * @param {object} [event]\n\t */\n\tfunction onSlidesClicked( event ) {\n\n\t\tconst anchor = Util.closest( event.target, 'a[href^=\"#\"]' );\n\n\t\t// If a hash link is clicked, we find the target slide\n\t\t// and navigate to it. We previously relied on 'hashchange'\n\t\t// for links like these but that prevented media with\n\t\t// audio tracks from playing in mobile browsers since it\n\t\t// wasn't considered a direct interaction with the document.\n\t\tif( anchor ) {\n\t\t\tconst hash = anchor.getAttribute( 'href' );\n\t\t\tconst indices = location.getIndicesFromHash( hash );\n\n\t\t\tif( indices ) {\n\t\t\t\tReveal.slide( indices.h, indices.v, indices.f );\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the window level 'resize' event.\n\t *\n\t * @param {object} [event]\n\t */\n\tfunction onWindowResize( event ) {\n\n\t\tlayout();\n\n\t}\n\n\t/**\n\t * Handle for the window level 'visibilitychange' event.\n\t *\n\t * @param {object} [event]\n\t */\n\tfunction onPageVisibilityChange( event ) {\n\n\t\t// If, after clicking a link or similar and we're coming back,\n\t\t// focus the document.body to ensure we can use keyboard shortcuts\n\t\tif( document.hidden === false && document.activeElement !== document.body ) {\n\t\t\t// Not all elements support .blur() - SVGs among them.\n\t\t\tif( typeof document.activeElement.blur === 'function' ) {\n\t\t\t\tdocument.activeElement.blur();\n\t\t\t}\n\t\t\tdocument.body.focus();\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the document level 'fullscreenchange' event.\n\t *\n\t * @param {object} [event]\n\t */\n\tfunction onFullscreenChange( event ) {\n\n\t\tlet element = document.fullscreenElement || document.webkitFullscreenElement;\n\t\tif( element === dom.wrapper ) {\n\t\t\tevent.stopImmediatePropagation();\n\n\t\t\t// Timeout to avoid layout shift in Safari\n\t\t\tsetTimeout( () => {\n\t\t\t\tReveal.layout();\n\t\t\t\tReveal.focus.focus(); // focus.focus :'(\n\t\t\t}, 1 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles clicks on links that are set to preview in the\n\t * iframe overlay.\n\t *\n\t * @param {object} event\n\t */\n\tfunction onPreviewLinkClicked( event ) {\n\n\t\tif( event.currentTarget && event.currentTarget.hasAttribute( 'href' ) ) {\n\t\t\tlet url = event.currentTarget.getAttribute( 'href' );\n\t\t\tif( url ) {\n\t\t\t\tshowPreview( url );\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles click on the auto-sliding controls element.\n\t *\n\t * @param {object} [event]\n\t */\n\tfunction onAutoSlidePlayerClick( event ) {\n\n\t\t// Replay\n\t\tif( isLastSlide() && config.loop === false ) {\n\t\t\tslide( 0, 0 );\n\t\t\tresumeAutoSlide();\n\t\t}\n\t\t// Resume\n\t\telse if( autoSlidePaused ) {\n\t\t\tresumeAutoSlide();\n\t\t}\n\t\t// Pause\n\t\telse {\n\t\t\tpauseAutoSlide();\n\t\t}\n\n\t}\n\n\n\t// --------------------------------------------------------------------//\n\t// ------------------------------- API --------------------------------//\n\t// --------------------------------------------------------------------//\n\n\t// The public reveal.js API\n\tconst API = {\n\t\tVERSION,\n\n\t\tinitialize,\n\t\tconfigure,\n\t\tdestroy,\n\n\t\tsync,\n\t\tsyncSlide,\n\t\tsyncFragments: fragments.sync.bind( fragments ),\n\n\t\t// Navigation methods\n\t\tslide,\n\t\tleft: navigateLeft,\n\t\tright: navigateRight,\n\t\tup: navigateUp,\n\t\tdown: navigateDown,\n\t\tprev: navigatePrev,\n\t\tnext: navigateNext,\n\n\t\t// Navigation aliases\n\t\tnavigateLeft, navigateRight, navigateUp, navigateDown, navigatePrev, navigateNext,\n\n\t\t// Fragment methods\n\t\tnavigateFragment: fragments.goto.bind( fragments ),\n\t\tprevFragment: fragments.prev.bind( fragments ),\n\t\tnextFragment: fragments.next.bind( fragments ),\n\n\t\t// Event binding\n\t\ton,\n\t\toff,\n\n\t\t// Legacy event binding methods left in for backwards compatibility\n\t\taddEventListener: on,\n\t\tremoveEventListener: off,\n\n\t\t// Forces an update in slide layout\n\t\tlayout,\n\n\t\t// Randomizes the order of slides\n\t\tshuffle,\n\n\t\t// Returns an object with the available routes as booleans (left/right/top/bottom)\n\t\tavailableRoutes,\n\n\t\t// Returns an object with the available fragments as booleans (prev/next)\n\t\tavailableFragments: fragments.availableRoutes.bind( fragments ),\n\n\t\t// Toggles a help overlay with keyboard shortcuts\n\t\ttoggleHelp,\n\n\t\t// Toggles the overview mode on/off\n\t\ttoggleOverview: overview.toggle.bind( overview ),\n\n\t\t// Toggles the scroll view on/off\n\t\ttoggleScrollView: scrollView.toggle.bind( scrollView ),\n\n\t\t// Toggles the \"black screen\" mode on/off\n\t\ttogglePause,\n\n\t\t// Toggles the auto slide mode on/off\n\t\ttoggleAutoSlide,\n\n\t\t// Toggles visibility of the jump-to-slide UI\n\t\ttoggleJumpToSlide,\n\n\t\t// Slide navigation checks\n\t\tisFirstSlide,\n\t\tisLastSlide,\n\t\tisLastVerticalSlide,\n\t\tisVerticalSlide,\n\t\tisVerticalStack,\n\n\t\t// State checks\n\t\tisPaused,\n\t\tisAutoSliding,\n\t\tisSpeakerNotes: notes.isSpeakerNotesWindow.bind( notes ),\n\t\tisOverview: overview.isActive.bind( overview ),\n\t\tisFocused: focus.isFocused.bind( focus ),\n\n\t\tisScrollView: scrollView.isActive.bind( scrollView ),\n\t\tisPrintView: printView.isActive.bind( printView ),\n\n\t\t// Checks if reveal.js has been loaded and is ready for use\n\t\tisReady: () => ready,\n\n\t\t// Slide preloading\n\t\tloadSlide: slideContent.load.bind( slideContent ),\n\t\tunloadSlide: slideContent.unload.bind( slideContent ),\n\n\t\t// Media playback\n\t\tstartEmbeddedContent: () => slideContent.startEmbeddedContent( currentSlide ),\n\t\tstopEmbeddedContent: () => slideContent.stopEmbeddedContent( currentSlide, { unloadIframes: false } ),\n\n\t\t// Preview management\n\t\tshowPreview,\n\t\thidePreview: closeOverlay,\n\n\t\t// Adds or removes all internal event listeners\n\t\taddEventListeners,\n\t\tremoveEventListeners,\n\t\tdispatchEvent,\n\n\t\t// Facility for persisting and restoring the presentation state\n\t\tgetState,\n\t\tsetState,\n\n\t\t// Presentation progress on range of 0-1\n\t\tgetProgress,\n\n\t\t// Returns the indices of the current, or specified, slide\n\t\tgetIndices,\n\n\t\t// Returns an Array of key:value maps of the attributes of each\n\t\t// slide in the deck\n\t\tgetSlidesAttributes,\n\n\t\t// Returns the number of slides that we have passed\n\t\tgetSlidePastCount,\n\n\t\t// Returns the total number of slides\n\t\tgetTotalSlides,\n\n\t\t// Returns the slide element at the specified index\n\t\tgetSlide,\n\n\t\t// Returns the previous slide element, may be null\n\t\tgetPreviousSlide: () => previousSlide,\n\n\t\t// Returns the current slide element\n\t\tgetCurrentSlide: () => currentSlide,\n\n\t\t// Returns the slide background element at the specified index\n\t\tgetSlideBackground,\n\n\t\t// Returns the speaker notes string for a slide, or null\n\t\tgetSlideNotes: notes.getSlideNotes.bind( notes ),\n\n\t\t// Returns an Array of all slides\n\t\tgetSlides,\n\n\t\t// Returns an array with all horizontal/vertical slides in the deck\n\t\tgetHorizontalSlides,\n\t\tgetVerticalSlides,\n\n\t\t// Checks if the presentation contains two or more horizontal\n\t\t// and vertical slides\n\t\thasHorizontalSlides,\n\t\thasVerticalSlides,\n\n\t\t// Checks if the deck has navigated on either axis at least once\n\t\thasNavigatedHorizontally: () => navigationHistory.hasNavigatedHorizontally,\n\t\thasNavigatedVertically: () => navigationHistory.hasNavigatedVertically,\n\n\t\tshouldAutoAnimateBetween,\n\n\t\t// Adds/removes a custom key binding\n\t\taddKeyBinding: keyboard.addKeyBinding.bind( keyboard ),\n\t\tremoveKeyBinding: keyboard.removeKeyBinding.bind( keyboard ),\n\n\t\t// Programmatically triggers a keyboard event\n\t\ttriggerKey: keyboard.triggerKey.bind( keyboard ),\n\n\t\t// Registers a new shortcut to include in the help overlay\n\t\tregisterKeyboardShortcut: keyboard.registerKeyboardShortcut.bind( keyboard ),\n\n\t\tgetComputedSlideSize,\n\t\tsetCurrentScrollPage,\n\n\t\t// Returns the current scale of the presentation content\n\t\tgetScale: () => scale,\n\n\t\t// Returns the current configuration object\n\t\tgetConfig: () => config,\n\n\t\t// Helper method, retrieves query string as a key:value map\n\t\tgetQueryHash: Util.getQueryHash,\n\n\t\t// Returns the path to the current slide as represented in the URL\n\t\tgetSlidePath: location.getHash.bind( location ),\n\n\t\t// Returns reveal.js DOM elements\n\t\tgetRevealElement: () => revealElement,\n\t\tgetSlidesElement: () => dom.slides,\n\t\tgetViewportElement: () => dom.viewport,\n\t\tgetBackgroundsElement: () => backgrounds.element,\n\n\t\t// API for registering and retrieving plugins\n\t\tregisterPlugin: plugins.registerPlugin.bind( plugins ),\n\t\thasPlugin: plugins.hasPlugin.bind( plugins ),\n\t\tgetPlugin: plugins.getPlugin.bind( plugins ),\n\t\tgetPlugins: plugins.getRegisteredPlugins.bind( plugins )\n\n\t};\n\n\t// Our internal API which controllers have access to\n\tUtil.extend( Reveal, {\n\t\t...API,\n\n\t\t// Methods for announcing content to screen readers\n\t\tannounceStatus,\n\t\tgetStatusText,\n\n\t\t// Controllers\n\t\tfocus,\n\t\tscroll: scrollView,\n\t\tprogress,\n\t\tcontrols,\n\t\tlocation,\n\t\toverview,\n\t\tfragments,\n\t\tbackgrounds,\n\t\tslideContent,\n\t\tslideNumber,\n\n\t\tonUserInput,\n\t\tcloseOverlay,\n\t\tupdateSlidesVisibility,\n\t\tlayoutSlideContents,\n\t\ttransformSlides,\n\t\tcueAutoSlide,\n\t\tcancelAutoSlide\n\t} );\n\n\treturn API;\n\n};\n","import Deck, { VERSION } from './reveal.js'\n\n/**\n * Expose the Reveal class to the window. To create a\n * new instance:\n * let deck = new Reveal( document.querySelector( '.reveal' ), {\n * controls: false\n * } );\n * deck.initialize().then(() => {\n * // reveal.js is ready\n * });\n */\nlet Reveal = Deck;\n\n\n/**\n * The below is a thin shell that mimics the pre 4.0\n * reveal.js API and ensures backwards compatibility.\n * This API only allows for one Reveal instance per\n * page, whereas the new API above lets you run many\n * presentations on the same page.\n *\n * Reveal.initialize( { controls: false } ).then(() => {\n * // reveal.js is ready\n * });\n */\n\nlet enqueuedAPICalls = [];\n\nReveal.initialize = options => {\n\n\t// Create our singleton reveal.js instance\n\tObject.assign( Reveal, new Deck( document.querySelector( '.reveal' ), options ) );\n\n\t// Invoke any enqueued API calls\n\tenqueuedAPICalls.map( method => method( Reveal ) );\n\n\treturn Reveal.initialize();\n\n}\n\n/**\n * The pre 4.0 API let you add event listener before\n * initializing. We maintain the same behavior by\n * queuing up premature API calls and invoking all\n * of them when Reveal.initialize is called.\n */\n[ 'configure', 'on', 'off', 'addEventListener', 'removeEventListener', 'registerPlugin' ].forEach( method => {\n\tReveal[method] = ( ...args ) => {\n\t\tenqueuedAPICalls.push( deck => deck[method].call( null, ...args ) );\n\t}\n} );\n\nReveal.isReady = () => false;\n\nReveal.VERSION = VERSION;\n\nexport default Reveal;"],"names":["extend","a","b","i","queryAll","el","selector","Array","from","querySelectorAll","toggleClass","className","value","classList","add","remove","deserialize","match","parseFloat","transformElement","element","transform","style","matches","target","matchesMethod","matchesSelector","msMatchesSelector","call","closest","parentNode","createSingletonNode","container","tagname","classname","innerHTML","nodes","length","testNode","node","document","createElement","appendChild","createStyleSheet","tag","type","styleSheet","cssText","createTextNode","head","getQueryHash","query","location","search","replace","split","shift","pop","unescape","getRemainingHeight","height","newHeight","oldHeight","offsetHeight","removeProperty","fileExtensionToMimeMap","mp4","m4a","ogv","mpeg","webm","UA","navigator","userAgent","isMobile","test","platform","maxTouchPoints","isAndroid","Object","defineProperty","fitty_module","_extends","assign","arguments","source","key","prototype","hasOwnProperty","w","toArray","nl","slice","DrawState","fitties","redrawFrame","requestRedraw","cancelAnimationFrame","requestAnimationFrame","redraw","filter","f","dirty","active","redrawAll","forEach","styleComputed","computeStyle","shouldPreStyle","applyStyle","fittiesToRedraw","shouldRedraw","calculateStyles","markAsClean","dispatchFitEvent","availableWidth","clientWidth","currentWidth","scrollWidth","previousFontSize","currentFontSize","Math","min","max","minSize","maxSize","whiteSpace","multiLine","getComputedStyle","getPropertyValue","display","preStyle","preStyleTestCompleted","fontSize","dispatchEvent","CustomEvent","detail","oldValue","newValue","scaleFactor","fit","destroy","_","observeMutations","observer","disconnect","originalStyle","subscribe","unsubscribe","MutationObserver","observe","defaultOptions","subtree","childList","characterData","resizeDebounce","onWindowResized","clearTimeout","setTimeout","fitty","observeWindowDelay","events","set","enabled","method","e","observeWindow","fitAll","fittyCreate","elements","options","fittyOptions","publicFitties","map","newbie","push","init","unfreeze","freeze","undefined","window","SlideContent","constructor","Reveal","this","startEmbeddedIframe","bind","shouldPreload","isScrollView","preload","getConfig","preloadIframes","hasAttribute","load","slide","tagName","setAttribute","getAttribute","removeAttribute","media","sources","background","slideBackgroundElement","backgroundContent","slideBackgroundContentElement","backgroundIframe","backgroundImage","backgroundVideo","backgroundVideoLoop","backgroundVideoMuted","trim","encodeRFC3986URI","url","encodeURI","c","charCodeAt","toString","toUpperCase","decodeURI","join","isSpeakerNotes","video","muted","getMimeTypeFromFile","filename","excludeIframes","iframe","width","maxHeight","maxWidth","backgroundIframeElement","querySelector","layout","scopeElement","unload","getSlideBackground","formatEmbeddedContent","_appendParamToIframeSource","sourceAttribute","sourceURL","param","getSlidesElement","src","indexOf","startEmbeddedContent","autoplay","autoPlayMedia","play","readyState","startEmbeddedMedia","promise","catch","controls","addEventListener","removeEventListener","event","isAttachedToDOM","isVisible","currentTime","contentWindow","postMessage","stopEmbeddedContent","unloadIframes","pause","SlideNumber","render","getRevealElement","configure","config","oldConfig","slideNumberDisplay","slideNumber","isPrintView","showSlideNumber","update","getSlideNumber","getCurrentSlide","format","getHorizontalSlides","horizontalOffset","dataset","visibility","getSlidePastCount","getTotalSlides","indices","getIndices","h","sep","isVerticalSlide","v","getHash","formatNumber","delimiter","isNaN","JumpToSlide","onInput","onBlur","onKeyDown","jumpInput","placeholder","show","indicesOnShow","focus","hide","jumpTimeout","jump","getIndicesFromHash","oneBasedIndex","jumpAfter","delay","regex","RegExp","getSlides","find","innerText","cancel","confirm","keyCode","stopImmediatePropagation","colorToRgb","color","hex3","r","parseInt","charAt","g","hex6","rgb","rgba","Backgrounds","create","slideh","backgroundStack","createBackground","slidev","parallaxBackgroundImage","backgroundSize","parallaxBackgroundSize","backgroundRepeat","parallaxBackgroundRepeat","backgroundPosition","parallaxBackgroundPosition","contentElement","sync","data","backgroundColor","backgroundGradient","backgroundTransition","backgroundOpacity","dataPreload","opacity","contrastClass","getContrastClass","contrastColor","computedBackgroundStyle","bubbleSlideContrastClassToElement","classToBubble","contains","includeAll","currentSlide","currentBackground","horizontalPast","rtl","horizontalFuture","childNodes","backgroundh","backgroundv","previousBackground","slideContent","currentBackgroundContent","backgroundImageURL","previousBackgroundHash","currentBackgroundHash","updateParallax","backgroundWidth","backgroundHeight","horizontalSlides","verticalSlides","getVerticalSlides","horizontalOffsetMultiplier","slideWidth","offsetWidth","horizontalSlideCount","parallaxBackgroundHorizontal","verticalOffsetMultiplier","verticalOffset","slideHeight","verticalSlideCount","parallaxBackgroundVertical","SLIDES_SELECTOR","HORIZONTAL_SLIDES_SELECTOR","VERTICAL_SLIDES_SELECTOR","POST_MESSAGE_METHOD_BLACKLIST","FRAGMENT_STYLE_REGEX","autoAnimateCounter","AutoAnimate","run","fromSlide","toSlide","reset","allSlides","toSlideIndex","fromSlideIndex","autoAnimateStyleSheet","animationOptions","getAutoAnimateOptions","autoAnimate","slideDirection","fromSlideIsHidden","css","getAutoAnimatableElements","autoAnimateElements","to","autoAnimateUnmatched","defaultUnmatchedDuration","duration","defaultUnmatchedDelay","getUnmatchedAutoAnimateElements","unmatchedElement","unmatchedOptions","id","autoAnimateTarget","fontWeight","sheet","removeChild","elementOptions","easing","fromProps","getAutoAnimatableProperties","toProps","styles","translate","scale","presentationScale","getScale","delta","x","y","scaleX","scaleY","round","propertyName","toValue","fromValue","explicitValue","toStyleProperties","keys","inheritedOptions","autoAnimateEasing","autoAnimateDuration","autoAnimatedParent","autoAnimateDelay","direction","properties","bounds","measure","center","getBoundingClientRect","offsetLeft","offsetTop","computedStyles","autoAnimateStyles","property","pairs","autoAnimateMatcher","getAutoAnimatePairs","reserved","pair","index","textNodes","findAutoAnimateMatches","nodeName","textContent","getLocalBoundingBox","fromScope","toScope","serializer","fromMatches","toMatches","fromElement","primaryIndex","secondaryIndex","rootElement","children","reduce","result","containsAnimatedElements","concat","ScrollView","activatedCallbacks","onScroll","activate","stateBeforeActivation","getState","slideHTMLBeforeActivation","presentationBackground","viewportElement","viewportStyles","pageElements","pageContainer","previousSlide","createPageElement","contentContainer","shouldAutoAnimateBetween","page","stickyContainer","insertBefore","horizontalSlide","isVerticalStack","verticalSlide","createProgressBar","stack","setState","callback","restoreScrollPosition","passive","deactivate","stateBeforeDeactivation","removeProgressBar","toggle","override","isActive","progressBar","progressBarInner","progressBarPlayhead","firstChild","handleDocumentMouseMove","progress","clientY","top","progressBarHeight","scrollTop","scrollHeight","handleDocumentMouseUp","draggingProgressBar","showProgressBar","preventDefault","syncPages","syncScrollPosition","slideSize","getComputedSlideSize","innerWidth","innerHeight","useCompactLayout","scrollLayout","viewportHeight","compactHeight","pageHeight","scrollTriggerHeight","setProperty","scrollSnapType","scrollSnap","slideTriggers","pages","pageElement","createPage","slideElement","stickyElement","backgroundElement","autoAnimatePages","activatePage","deactivatePage","createFragmentTriggersForPage","createAutoAnimateTriggersForPage","totalScrollTriggerCount","scrollTriggers","total","triggerStick","scrollSnapAlign","marginTop","scrollPadding","totalHeight","position","setTriggerRanges","scrollProgress","syncProgressBar","trigger","rangeStart","range","scrollTriggerSegmentSize","scrollTrigger","fragmentGroups","fragments","sort","autoAnimateElement","autoAnimatePage","indexh","indexv","viewportHeightFactor","playheadHeight","progressBarScrollableHeight","progressSegmentHeight","spacing","slideTrigger","progressBarSlide","scrollTriggerElements","triggerElement","scrollProgressMid","activePage","loaded","activateTrigger","deactivateTrigger","setProgressBarValue","getAllPages","hideProgressBarTimeout","scrollToSlide","getScrollTriggerBySlide","storeScrollPosition","storeScrollPositionTimeout","sessionStorage","setItem","origin","pathname","scrollPosition","getItem","scrollOrigin","setCurrentScrollPage","backgrounds","sibling","getSlideByIndices","flatMap","getViewportElement","PrintView","async","slides","injectPageNumbers","pageWidth","floor","margin","Promise","documentElement","body","layoutSlideContents","slideScrollHeights","left","contentHeight","numberOfPages","ceil","pdfMaxPagesPerSlide","pdfPageHeightOffset","showNotes","notes","getSlideNotes","notesSpacing","notesLayout","notesElement","bottom","numberElement","pdfSeparateFragments","previousFragmentStep","fragment","clonedPage","cloneNode","fragmentNumber","view","Fragments","disable","enable","availableRoutes","hiddenFragments","prev","next","grouped","ordered","unordered","sorted","group","sortAll","changedFragments","shown","hidden","maxIndex","currentFragment","wasVisible","announceStatus","getStatusText","bubbles","goto","offset","lastVisibleFragment","fragmentInURL","writeURL","Overview","onSlideClicked","overview","cancelAutoSlide","getBackgroundsElement","overviewSlideWidth","overviewSlideHeight","updateSlidesVisibility","hslide","vslide","hbackground","vbackground","vmin","transformSlides","cueAutoSlide","Keyboard","shortcuts","bindings","onDocumentKeyDown","navigationMode","unbind","addKeyBinding","binding","description","removeKeyBinding","triggerKey","registerKeyboardShortcut","getShortcuts","getBindings","keyboardCondition","isFocused","autoSlideWasPaused","isAutoSliding","onUserInput","activeElementIsCE","activeElement","isContentEditable","activeElementIsInput","activeElementIsNotes","unusedModifier","shiftKey","altKey","ctrlKey","metaKey","resumeKeyCodes","keyboard","isPaused","useLinearMode","hasHorizontalSlides","hasVerticalSlides","triggered","apply","action","skipFragments","right","up","Number","MAX_VALUE","down","includes","togglePause","requestMethod","requestFullscreen","webkitRequestFullscreen","webkitRequestFullScreen","mozRequestFullScreen","msRequestFullscreen","enterFullscreen","embedded","autoSlideStoppable","toggleAutoSlide","jumpToSlide","toggleJumpToSlide","toggleHelp","closeOverlay","Location","writeURLTimeout","replaceStateTimestamp","onWindowHashChange","hash","name","bits","hashIndexBase","hashOneBasedIndex","getElementById","decodeURIComponent","error","readURL","currentIndices","newIndices","history","debouncedReplaceState","replaceState","Date","now","replaceStateTimeout","MAX_REPLACE_STATE_FREQUENCY","s","encodeURIComponent","Controls","onNavigateLeftClicked","onNavigateRightClicked","onNavigateUpClicked","onNavigateDownClicked","onNavigatePrevClicked","onNavigateNextClicked","revealElement","controlsLeft","controlsRight","controlsUp","controlsDown","controlsPrev","controlsNext","controlsRightArrow","controlsLeftArrow","controlsDownArrow","controlsLayout","controlsBackArrows","pointerEvents","eventName","routes","fragmentsRoutes","controlsTutorial","hasNavigatedVertically","hasNavigatedHorizontally","Progress","onProgressClicked","bar","getProgress","getMaxWidth","slidesTotal","slideIndex","clientX","targetIndices","Pointer","lastMouseWheelStep","cursorHidden","cursorInactiveTimeout","onDocumentCursorActive","onDocumentMouseScroll","mouseWheel","hideInactiveCursor","showCursor","cursor","hideCursor","hideCursorTime","wheelDelta","loadScript","script","defer","onload","onreadystatechange","onerror","err","Error","lastChild","Plugins","reveal","state","registeredPlugins","asyncDependencies","plugins","dependencies","registerPlugin","resolve","scripts","scriptsToLoad","condition","scriptLoadedCallback","initPlugins","then","console","warn","pluginValues","values","pluginsToInitialize","loadAsync","initNextPlugin","afterPlugInitialized","plugin","hasPlugin","getPlugin","getRegisteredPlugins","Touch","touchStartX","touchStartY","touchStartCount","touchCaptured","onPointerDown","onPointerMove","onPointerUp","onTouchStart","onTouchMove","onTouchEnd","msPointerEnabled","isSwipePrevented","touches","currentX","currentY","includeFragments","deltaX","deltaY","abs","pointerType","MSPOINTER_TYPE_TOUCH","STATE_FOCUS","STATE_BLUR","Focus","onRevealPointerDown","onDocumentPointerDown","blur","Notes","updateVisibility","hasNotes","isSpeakerNotesWindow","notesElements","Playback","progressCheck","diameter","diameter2","thickness","playing","progressOffset","canvas","context","getContext","setPlaying","wasPlaying","animate","progressBefore","radius","iconSize","endAngle","PI","startAngle","save","clearRect","beginPath","arc","fillStyle","fill","lineWidth","strokeStyle","stroke","fillRect","moveTo","lineTo","restore","on","listener","off","minScale","maxScale","respondToHashChanges","disableLayout","touch","loop","shuffle","help","showHiddenSlides","autoSlide","autoSlideMethod","defaultTiming","previewLinks","postMessageEvents","focusBodyOnPageVisibilityChange","transition","transitionSpeed","scrollActivationWidth","POSITIVE_INFINITY","viewDistance","mobileViewDistance","sortFragmentsOnSync","VERSION","autoSlidePlayer","ready","navigationHistory","slidesTransform","dom","autoSlideTimeout","autoSlideStartTime","autoSlidePaused","scrollView","printView","pointer","initialize","initOptions","wrapper","defaultConfig","Util","setViewport","start","viewport","removeHiddenSlides","setupDOM","setupPostMessage","setupScrollPrevention","setupFullscreen","resetVerticalSlides","activateInitialView","activatePrintView","activateScrollView","removeEventListeners","parent","childElementCount","Device","pauseOverlay","statusElement","createStatusElement","overflow","clip","text","nodeType","isAriaHidden","isDisplayHidden","child","setInterval","scrollLeft","onFullscreenChange","onPostMessage","isReady","numberOfSlides","resume","enablePreviewLinks","disablePreviewLinks","onAutoSlidePlayerClick","addEventListeners","onWindowResize","onSlidesClicked","onTransitionEnd","onPageVisibilityChange","useCapture","transforms","createEvent","initEvent","dispatchPostMessage","dispatchSlideChanged","self","message","namespace","JSON","stringify","onPreviewLinkClicked","showPreview","overlay","showHelp","html","viewportWidth","size","oldScale","presentationWidth","presentationHeight","zoom","len","remainingHeight","nw","naturalWidth","videoWidth","nh","naturalHeight","videoHeight","es","setPreviousVerticalIndex","getPreviousVerticalIndex","attributeName","isLastVerticalSlide","nextElementSibling","isFirstSlide","isLastSlide","wasPaused","resumeAutoSlide","pauseAutoSlide","defaultPrevented","stateBefore","indexhBefore","indexvBefore","updateSlides","slideChanged","currentHorizontalSlide","currentVerticalSlides","autoAnimateTransition","getVerticalStacks","stateLoop","j","splice","syncSlide","beforeSlide","random","slidesLength","printMode","loopedForwards","loopedBackwards","reverse","showFragmentsIn","hideFragmentsIn","wasPresent","slideState","distanceX","distanceY","horizontalSlidesLength","verticalSlidesLength","oy","fragmentRoutes","pastCount","mainLoop","totalCount","allFragments","fragmentWeight","isVertical","getSlidesAttributes","attributes","attribute","getSlide","indexf","paused","pausedFlag","overviewFlag","fragmentAutoSlide","parentAutoSlide","slideAutoSlide","playbackRate","navigateNext","navigateLeft","navigateRight","navigateUp","navigateDown","navigatePrev","parse","args","anchor","fullscreenElement","webkitFullscreenElement","currentTarget","API","syncFragments","navigateFragment","prevFragment","nextFragment","availableFragments","toggleOverview","toggleScrollView","isOverview","loadSlide","unloadSlide","hidePreview","getPreviousSlide","getSlidePath","getPlugins","scroll","Deck","enqueuedAPICalls","deck"],"mappings":"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"} |