{"remainingRequest":"/Users/dev/Sites/belavistasaude/wp-content/themes/belavistasaude/node_modules/buble-loader/index.js??ref--2-1!/Users/dev/Sites/belavistasaude/wp-content/themes/belavistasaude/node_modules/foundation-sites/js/foundation.accordion.js","dependencies":[{"path":"/Users/dev/Sites/belavistasaude/wp-content/themes/belavistasaude/node_modules/foundation-sites/js/foundation.accordion.js","mtime":1560429080762},{"path":"/Users/dev/Sites/belavistasaude/wp-content/themes/belavistasaude/node_modules/cache-loader/dist/cjs.js","mtime":1560429090832},{"path":"/Users/dev/Sites/belavistasaude/wp-content/themes/belavistasaude/node_modules/buble-loader/index.js","mtime":1560429088235}],"contextDependencies":[],"result":["'use strict';\n\nimport $ from 'jquery';\nimport { Keyboard } from './foundation.util.keyboard';\nimport { GetYoDigits } from './foundation.util.core';\nimport { Plugin } from './foundation.plugin';\n\n/**\n * Accordion module.\n * @module foundation.accordion\n * @requires foundation.util.keyboard\n */\n\nvar Accordion = (function (Plugin) {\n  function Accordion () {\n    Plugin.apply(this, arguments);\n  }\n\n  if ( Plugin ) Accordion.__proto__ = Plugin;\n  Accordion.prototype = Object.create( Plugin && Plugin.prototype );\n  Accordion.prototype.constructor = Accordion;\n\n  Accordion.prototype._setup = function _setup (element, options) {\n    this.$element = element;\n    this.options = $.extend({}, Accordion.defaults, this.$element.data(), options);\n\n    this.className = 'Accordion'; // ie9 back compat\n    this._init();\n\n    Keyboard.register('Accordion', {\n      'ENTER': 'toggle',\n      'SPACE': 'toggle',\n      'ARROW_DOWN': 'next',\n      'ARROW_UP': 'previous'\n    });\n  };\n\n  /**\n   * Initializes the accordion by animating the preset active pane(s).\n   * @private\n   */\n  Accordion.prototype._init = function _init () {\n    var this$1 = this;\n\n    this.$element.attr('role', 'tablist');\n    this.$tabs = this.$element.children('[data-accordion-item]');\n\n    this.$tabs.each(function(idx, el) {\n      var $el = $(el),\n          $content = $el.children('[data-tab-content]'),\n          id = $content[0].id || GetYoDigits(6, 'accordion'),\n          linkId = el.id || (id + \"-label\");\n\n      $el.find('a:first').attr({\n        'aria-controls': id,\n        'role': 'tab',\n        'id': linkId,\n        'aria-expanded': false,\n        'aria-selected': false\n      });\n\n      $content.attr({'role': 'tabpanel', 'aria-labelledby': linkId, 'aria-hidden': true, 'id': id});\n    });\n    var $initActive = this.$element.find('.is-active').children('[data-tab-content]');\n    this.firstTimeInit = true;\n    if($initActive.length){\n      this.down($initActive, this.firstTimeInit);\n      this.firstTimeInit = false;\n    }\n\n    this._checkDeepLink = function () {\n      var anchor = window.location.hash;\n      //need a hash and a relevant anchor in this tabset\n      if(anchor.length) {\n        var $link = this$1.$element.find('[href$=\"'+anchor+'\"]'),\n        $anchor = $(anchor);\n\n        if ($link.length && $anchor) {\n          if (!$link.parent('[data-accordion-item]').hasClass('is-active')) {\n            this$1.down($anchor, this$1.firstTimeInit);\n            this$1.firstTimeInit = false;\n          };\n\n          //roll up a little to show the titles\n          if (this$1.options.deepLinkSmudge) {\n            var _this = this$1;\n            $(window).load(function() {\n              var offset = _this.$element.offset();\n              $('html, body').animate({ scrollTop: offset.top }, _this.options.deepLinkSmudgeDelay);\n            });\n          }\n\n          /**\n            * Fires when the zplugin has deeplinked at pageload\n            * @event Accordion#deeplink\n            */\n          this$1.$element.trigger('deeplink.zf.accordion', [$link, $anchor]);\n        }\n      }\n    }\n\n    //use browser to open a tab, if it exists in this tabset\n    if (this.options.deepLink) {\n      this._checkDeepLink();\n    }\n\n    this._events();\n  };\n\n  /**\n   * Adds event handlers for items within the accordion.\n   * @private\n   */\n  Accordion.prototype._events = function _events () {\n    var _this = this;\n\n    this.$tabs.each(function() {\n      var $elem = $(this);\n      var $tabContent = $elem.children('[data-tab-content]');\n      if ($tabContent.length) {\n        $elem.children('a').off('click.zf.accordion keydown.zf.accordion')\n               .on('click.zf.accordion', function(e) {\n          e.preventDefault();\n          _this.toggle($tabContent);\n        }).on('keydown.zf.accordion', function(e){\n          Keyboard.handleKey(e, 'Accordion', {\n            toggle: function() {\n              _this.toggle($tabContent);\n            },\n            next: function() {\n              var $a = $elem.next().find('a').focus();\n              if (!_this.options.multiExpand) {\n                $a.trigger('click.zf.accordion')\n              }\n            },\n            previous: function() {\n              var $a = $elem.prev().find('a').focus();\n              if (!_this.options.multiExpand) {\n                $a.trigger('click.zf.accordion')\n              }\n            },\n            handled: function() {\n              e.preventDefault();\n              e.stopPropagation();\n            }\n          });\n        });\n      }\n    });\n    if(this.options.deepLink) {\n      $(window).on('popstate', this._checkDeepLink);\n    }\n  };\n\n  /**\n   * Toggles the selected content pane's open/close state.\n   * @param {jQuery} $target - jQuery object of the pane to toggle (`.accordion-content`).\n   * @function\n   */\n  Accordion.prototype.toggle = function toggle ($target) {\n    if ($target.closest('[data-accordion]').is('[disabled]')) {\n      console.info('Cannot toggle an accordion that is disabled.');\n      return;\n    }\n    if($target.parent().hasClass('is-active')) {\n      this.up($target);\n    } else {\n      this.down($target);\n    }\n    //either replace or update browser history\n    if (this.options.deepLink) {\n      var anchor = $target.prev('a').attr('href');\n\n      if (this.options.updateHistory) {\n        history.pushState({}, '', anchor);\n      } else {\n        history.replaceState({}, '', anchor);\n      }\n    }\n  };\n\n  /**\n   * Opens the accordion tab defined by `$target`.\n   * @param {jQuery} $target - Accordion pane to open (`.accordion-content`).\n   * @param {Boolean} firstTime - flag to determine if reflow should happen.\n   * @fires Accordion#down\n   * @function\n   */\n  Accordion.prototype.down = function down ($target, firstTime) {\n    var this$1 = this;\n\n    /**\n     * checking firstTime allows for initial render of the accordion\n     * to render preset is-active panes.\n     */\n    if ($target.closest('[data-accordion]').is('[disabled]') && !firstTime)  {\n      console.info('Cannot call down on an accordion that is disabled.');\n      return;\n    }\n    $target\n      .attr('aria-hidden', false)\n      .parent('[data-tab-content]')\n      .addBack()\n      .parent().addClass('is-active');\n\n    if (!this.options.multiExpand && !firstTime) {\n      var $currentActive = this.$element.children('.is-active').children('[data-tab-content]');\n      if ($currentActive.length) {\n        this.up($currentActive.not($target));\n      }\n    }\n\n    $target.slideDown(this.options.slideSpeed, function () {\n      /**\n       * Fires when the tab is done opening.\n       * @event Accordion#down\n       */\n      this$1.$element.trigger('down.zf.accordion', [$target]);\n    });\n\n    $((\"#\" + ($target.attr('aria-labelledby')))).attr({\n      'aria-expanded': true,\n      'aria-selected': true\n    });\n  };\n\n  /**\n   * Closes the tab defined by `$target`.\n   * @param {jQuery} $target - Accordion tab to close (`.accordion-content`).\n   * @fires Accordion#up\n   * @function\n   */\n  Accordion.prototype.up = function up ($target) {\n    if ($target.closest('[data-accordion]').is('[disabled]')) {\n      console.info('Cannot call up on an accordion that is disabled.');\n      return;\n    }\n\n    var $aunts = $target.parent().siblings(),\n        _this = this;\n\n    if((!this.options.allowAllClosed && !$aunts.hasClass('is-active')) || !$target.parent().hasClass('is-active')) {\n      return;\n    }\n\n    $target.slideUp(_this.options.slideSpeed, function () {\n      /**\n       * Fires when the tab is done collapsing up.\n       * @event Accordion#up\n       */\n      _this.$element.trigger('up.zf.accordion', [$target]);\n    });\n\n    $target.attr('aria-hidden', true)\n           .parent().removeClass('is-active');\n\n    $((\"#\" + ($target.attr('aria-labelledby')))).attr({\n     'aria-expanded': false,\n     'aria-selected': false\n   });\n  };\n\n  /**\n   * Destroys an instance of an accordion.\n   * @fires Accordion#destroyed\n   * @function\n   */\n  Accordion.prototype._destroy = function _destroy () {\n    this.$element.find('[data-tab-content]').stop(true).slideUp(0).css('display', '');\n    this.$element.find('a').off('.zf.accordion');\n    if(this.options.deepLink) {\n      $(window).off('popstate', this._checkDeepLink);\n    }\n\n  };\n\n  return Accordion;\n}(Plugin));\n\nAccordion.defaults = {\n  /**\n   * Amount of time to animate the opening of an accordion pane.\n   * @option\n   * @type {number}\n   * @default 250\n   */\n  slideSpeed: 250,\n  /**\n   * Allow the accordion to have multiple open panes.\n   * @option\n   * @type {boolean}\n   * @default false\n   */\n  multiExpand: false,\n  /**\n   * Allow the accordion to close all panes.\n   * @option\n   * @type {boolean}\n   * @default false\n   */\n  allowAllClosed: false,\n  /**\n   * Allows the window to scroll to content of pane specified by hash anchor\n   * @option\n   * @type {boolean}\n   * @default false\n   */\n  deepLink: false,\n\n  /**\n   * Adjust the deep link scroll to make sure the top of the accordion panel is visible\n   * @option\n   * @type {boolean}\n   * @default false\n   */\n  deepLinkSmudge: false,\n\n  /**\n   * Animation time (ms) for the deep link adjustment\n   * @option\n   * @type {number}\n   * @default 300\n   */\n  deepLinkSmudgeDelay: 300,\n\n  /**\n   * Update the browser history with the open accordion\n   * @option\n   * @type {boolean}\n   * @default false\n   */\n  updateHistory: false\n};\n\nexport {Accordion};\n",{"version":3,"file":"/Users/dev/Sites/belavistasaude/wp-content/themes/belavistasaude/node_modules/foundation-sites/js/foundation.accordion.js","sources":["node_modules/foundation-sites/js/foundation.accordion.js"],"sourcesContent":["'use strict';\n\nimport $ from 'jquery';\nimport { Keyboard } from './foundation.util.keyboard';\nimport { GetYoDigits } from './foundation.util.core';\nimport { Plugin } from './foundation.plugin';\n\n/**\n * Accordion module.\n * @module foundation.accordion\n * @requires foundation.util.keyboard\n */\n\nclass Accordion extends Plugin {\n  /**\n   * Creates a new instance of an accordion.\n   * @class\n   * @name Accordion\n   * @fires Accordion#init\n   * @param {jQuery} element - jQuery object to make into an accordion.\n   * @param {Object} options - a plain object with settings to override the default options.\n   */\n  _setup(element, options) {\n    this.$element = element;\n    this.options = $.extend({}, Accordion.defaults, this.$element.data(), options);\n\n    this.className = 'Accordion'; // ie9 back compat\n    this._init();\n\n    Keyboard.register('Accordion', {\n      'ENTER': 'toggle',\n      'SPACE': 'toggle',\n      'ARROW_DOWN': 'next',\n      'ARROW_UP': 'previous'\n    });\n  }\n\n  /**\n   * Initializes the accordion by animating the preset active pane(s).\n   * @private\n   */\n  _init() {\n    this.$element.attr('role', 'tablist');\n    this.$tabs = this.$element.children('[data-accordion-item]');\n\n    this.$tabs.each(function(idx, el) {\n      var $el = $(el),\n          $content = $el.children('[data-tab-content]'),\n          id = $content[0].id || GetYoDigits(6, 'accordion'),\n          linkId = el.id || `${id}-label`;\n\n      $el.find('a:first').attr({\n        'aria-controls': id,\n        'role': 'tab',\n        'id': linkId,\n        'aria-expanded': false,\n        'aria-selected': false\n      });\n\n      $content.attr({'role': 'tabpanel', 'aria-labelledby': linkId, 'aria-hidden': true, 'id': id});\n    });\n    var $initActive = this.$element.find('.is-active').children('[data-tab-content]');\n    this.firstTimeInit = true;\n    if($initActive.length){\n      this.down($initActive, this.firstTimeInit);\n      this.firstTimeInit = false;\n    }\n\n    this._checkDeepLink = () => {\n      var anchor = window.location.hash;\n      //need a hash and a relevant anchor in this tabset\n      if(anchor.length) {\n        var $link = this.$element.find('[href$=\"'+anchor+'\"]'),\n        $anchor = $(anchor);\n\n        if ($link.length && $anchor) {\n          if (!$link.parent('[data-accordion-item]').hasClass('is-active')) {\n            this.down($anchor, this.firstTimeInit);\n            this.firstTimeInit = false;\n          };\n\n          //roll up a little to show the titles\n          if (this.options.deepLinkSmudge) {\n            var _this = this;\n            $(window).load(function() {\n              var offset = _this.$element.offset();\n              $('html, body').animate({ scrollTop: offset.top }, _this.options.deepLinkSmudgeDelay);\n            });\n          }\n\n          /**\n            * Fires when the zplugin has deeplinked at pageload\n            * @event Accordion#deeplink\n            */\n          this.$element.trigger('deeplink.zf.accordion', [$link, $anchor]);\n        }\n      }\n    }\n\n    //use browser to open a tab, if it exists in this tabset\n    if (this.options.deepLink) {\n      this._checkDeepLink();\n    }\n\n    this._events();\n  }\n\n  /**\n   * Adds event handlers for items within the accordion.\n   * @private\n   */\n  _events() {\n    var _this = this;\n\n    this.$tabs.each(function() {\n      var $elem = $(this);\n      var $tabContent = $elem.children('[data-tab-content]');\n      if ($tabContent.length) {\n        $elem.children('a').off('click.zf.accordion keydown.zf.accordion')\n               .on('click.zf.accordion', function(e) {\n          e.preventDefault();\n          _this.toggle($tabContent);\n        }).on('keydown.zf.accordion', function(e){\n          Keyboard.handleKey(e, 'Accordion', {\n            toggle: function() {\n              _this.toggle($tabContent);\n            },\n            next: function() {\n              var $a = $elem.next().find('a').focus();\n              if (!_this.options.multiExpand) {\n                $a.trigger('click.zf.accordion')\n              }\n            },\n            previous: function() {\n              var $a = $elem.prev().find('a').focus();\n              if (!_this.options.multiExpand) {\n                $a.trigger('click.zf.accordion')\n              }\n            },\n            handled: function() {\n              e.preventDefault();\n              e.stopPropagation();\n            }\n          });\n        });\n      }\n    });\n    if(this.options.deepLink) {\n      $(window).on('popstate', this._checkDeepLink);\n    }\n  }\n\n  /**\n   * Toggles the selected content pane's open/close state.\n   * @param {jQuery} $target - jQuery object of the pane to toggle (`.accordion-content`).\n   * @function\n   */\n  toggle($target) {\n    if ($target.closest('[data-accordion]').is('[disabled]')) {\n      console.info('Cannot toggle an accordion that is disabled.');\n      return;\n    }\n    if($target.parent().hasClass('is-active')) {\n      this.up($target);\n    } else {\n      this.down($target);\n    }\n    //either replace or update browser history\n    if (this.options.deepLink) {\n      var anchor = $target.prev('a').attr('href');\n\n      if (this.options.updateHistory) {\n        history.pushState({}, '', anchor);\n      } else {\n        history.replaceState({}, '', anchor);\n      }\n    }\n  }\n\n  /**\n   * Opens the accordion tab defined by `$target`.\n   * @param {jQuery} $target - Accordion pane to open (`.accordion-content`).\n   * @param {Boolean} firstTime - flag to determine if reflow should happen.\n   * @fires Accordion#down\n   * @function\n   */\n  down($target, firstTime) {\n    /**\n     * checking firstTime allows for initial render of the accordion\n     * to render preset is-active panes.\n     */\n    if ($target.closest('[data-accordion]').is('[disabled]') && !firstTime)  {\n      console.info('Cannot call down on an accordion that is disabled.');\n      return;\n    }\n    $target\n      .attr('aria-hidden', false)\n      .parent('[data-tab-content]')\n      .addBack()\n      .parent().addClass('is-active');\n\n    if (!this.options.multiExpand && !firstTime) {\n      var $currentActive = this.$element.children('.is-active').children('[data-tab-content]');\n      if ($currentActive.length) {\n        this.up($currentActive.not($target));\n      }\n    }\n\n    $target.slideDown(this.options.slideSpeed, () => {\n      /**\n       * Fires when the tab is done opening.\n       * @event Accordion#down\n       */\n      this.$element.trigger('down.zf.accordion', [$target]);\n    });\n\n    $(`#${$target.attr('aria-labelledby')}`).attr({\n      'aria-expanded': true,\n      'aria-selected': true\n    });\n  }\n\n  /**\n   * Closes the tab defined by `$target`.\n   * @param {jQuery} $target - Accordion tab to close (`.accordion-content`).\n   * @fires Accordion#up\n   * @function\n   */\n  up($target) {\n    if ($target.closest('[data-accordion]').is('[disabled]')) {\n      console.info('Cannot call up on an accordion that is disabled.');\n      return;\n    }\n\n    var $aunts = $target.parent().siblings(),\n        _this = this;\n\n    if((!this.options.allowAllClosed && !$aunts.hasClass('is-active')) || !$target.parent().hasClass('is-active')) {\n      return;\n    }\n\n    $target.slideUp(_this.options.slideSpeed, function () {\n      /**\n       * Fires when the tab is done collapsing up.\n       * @event Accordion#up\n       */\n      _this.$element.trigger('up.zf.accordion', [$target]);\n    });\n\n    $target.attr('aria-hidden', true)\n           .parent().removeClass('is-active');\n\n    $(`#${$target.attr('aria-labelledby')}`).attr({\n     'aria-expanded': false,\n     'aria-selected': false\n   });\n  }\n\n  /**\n   * Destroys an instance of an accordion.\n   * @fires Accordion#destroyed\n   * @function\n   */\n  _destroy() {\n    this.$element.find('[data-tab-content]').stop(true).slideUp(0).css('display', '');\n    this.$element.find('a').off('.zf.accordion');\n    if(this.options.deepLink) {\n      $(window).off('popstate', this._checkDeepLink);\n    }\n\n  }\n}\n\nAccordion.defaults = {\n  /**\n   * Amount of time to animate the opening of an accordion pane.\n   * @option\n   * @type {number}\n   * @default 250\n   */\n  slideSpeed: 250,\n  /**\n   * Allow the accordion to have multiple open panes.\n   * @option\n   * @type {boolean}\n   * @default false\n   */\n  multiExpand: false,\n  /**\n   * Allow the accordion to close all panes.\n   * @option\n   * @type {boolean}\n   * @default false\n   */\n  allowAllClosed: false,\n  /**\n   * Allows the window to scroll to content of pane specified by hash anchor\n   * @option\n   * @type {boolean}\n   * @default false\n   */\n  deepLink: false,\n\n  /**\n   * Adjust the deep link scroll to make sure the top of the accordion panel is visible\n   * @option\n   * @type {boolean}\n   * @default false\n   */\n  deepLinkSmudge: false,\n\n  /**\n   * Animation time (ms) for the deep link adjustment\n   * @option\n   * @type {number}\n   * @default 300\n   */\n  deepLinkSmudgeDelay: 300,\n\n  /**\n   * Update the browser history with the open accordion\n   * @option\n   * @type {boolean}\n   * @default false\n   */\n  updateHistory: false\n};\n\nexport {Accordion};\n"],"names":["this"],"mappings":"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","sourceRoot":"/Users/dev/Sites/belavistasaude/wp-content/themes/belavistasaude"}]}