{"version":3,"file":"js/accordion-6cdfb8b453f837157d0d.js","sources":["webpack:///webpack/bootstrap","webpack:///./app/javascript/packs/accordion.js"],"sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/packs/\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"./app/javascript/packs/accordion.js\");\n","('use strict');\n\n/*\n * Simple accordion pattern example\n */\nclass Accordion {\n constructor(domNode) {\n this.rootEl = domNode;\n this.buttonEl = this.rootEl.querySelector('button[aria-expanded]');\n\n const controlsId = this.buttonEl.getAttribute('aria-controls');\n this.contentEl = document.getElementById(controlsId);\n\n this.open = this.buttonEl.getAttribute('aria-expanded') === 'true';\n\n // add event listeners\n this.buttonEl.addEventListener('click', this.onButtonClick.bind(this));\n }\n\n onButtonClick() {\n this.toggle(!this.open);\n }\n\n toggle(open) {\n // don't do anything if the open state doesn't change\n if (open === this.open) {\n return;\n }\n\n // update the internal state\n this.open = open;\n\n // handle DOM updates\n this.buttonEl.setAttribute('aria-expanded', `${open}`);\n if (open) {\n this.contentEl.removeAttribute('hidden');\n } else {\n this.contentEl.setAttribute('hidden', '');\n }\n }\n\n // Add public open and close methods for convenience\n open() {\n this.toggle(true);\n }\n\n close() {\n this.toggle(false);\n }\n}\n\ndocument.addEventListener('DOMContentLoaded', function (event) {\n // init accordions Mobile\n const accordions = document.querySelectorAll('.accordionW3C h3');\n accordions.forEach((accordionEl) => {\n new Accordion(accordionEl);\n });\n\n // For desktop version\n\n let mainNavLinks = document.querySelectorAll('nav.leftnav ul li a');\n let mainSections = document.querySelectorAll('div.wrapper--content .section');\n\n let lastId;\n let cur = [];\n window.addEventListener('scroll', (event) => {\n let fromTop = window.scrollY;\n\n mainNavLinks.forEach((link) => {\n let section = document.querySelector(link.hash);\n\n if (\n section.offsetTop <= fromTop &&\n section.offsetTop + section.offsetHeight > fromTop\n ) {\n link.classList.add('current');\n } else {\n link.classList.remove('current');\n }\n });\n });\n});\n"],"mappings":";AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;;;;;AClFA;AAEA;AACA;AACA;AACA;AACA;AADA;AACA;AAAA;AACA;AAAA;AACA;AAEA;AACA;AAEA;AACA;AAEA;AACA;AACA;;;AACA;AACA;AACA;;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAEA;AACA;AACA;;;AAEA;AACA;AACA;;;;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AAGA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAIA;AACA;AACA;AACA;AACA;AACA;AACA;;;;A","sourceRoot":""}