' + address[0] + '
' + address[1] + \",\" + address[2] + '' + '\" + item.Description + \"
\";\n\t\n\t\t\tbuff += \"\";\n\t\t}\n\t\n\t\tsResults.html(buff);\n\t}\n\n/***/ },\n/* 15 */\n/***/ function(module, exports) {\n\n\t\"use strict\";\n\t\n\tvar pIndex = 0;\n\tvar blogApp;\n\t\n\tvar loadMoreBtn;\n\t$(document).ready(function () {\n\t\tblogApp = $(\".blog-item-container\");\n\t\tif (blogApp.length == 0) {\n\t\t\treturn;\n\t\t}\n\t\n\t\tloadMoreBtn = $(\".blog-load-more-btn\");\n\t\n\t\tloadMoreBtn.on(\"click\", loadMoreClick);\n\t});\n\t\n\tfunction loadMoreClick(event) {\n\t\tevent.preventDefault();\n\t\tpIndex++;\n\t\tvar guid = blogApp.attr(\"data-guid\");\n\t\tvar url = blogApp.attr(\"data-blog-api-url\");\n\t\n\t\tloadMoreBtn.addClass(\"hidden\");\n\t\n\t\t//console.log(url + guid);\n\t\n\t\t$.ajax({\n\t\t\tdataType: \"json\",\n\t\t\turl: url,\n\t\t\tdata: { guid: guid, pageIndex: pIndex },\n\t\t\tsuccess: onServerData\n\t\n\t\t});\n\t}\n\t\n\tfunction onServerData(results) {\n\t\n\t\tblogApp.find(\".row\").eq(0).append(results.Html);\n\t\n\t\tif (results.ShowButton) {\n\t\t\tloadMoreBtn.removeClass(\"hidden\");\n\t\t}\n\t}\n\n/***/ },\n/* 16 */\n/***/ function(module, exports) {\n\n\t\"use strict\";\n\t\n\t//due to time and budget more elegant solution doesn't exist....\n\t\n\t$(document).ready(function () {\n\t\n\t //ios flexbox issue fix.\n\t\n\t $(window).on(\"resize\", onResize);\n\t onResize();\n\t});\n\t\n\tfunction onResize(event) {\n\t setTimeout(function () {\n\t afterResize();\n\t }, 150);\n\t}\n\t\n\tfunction afterResize() {\n\t $(\".leaf--left\").each(function () {\n\t\n\t var leftLeaf = $(this);\n\t var rightLeaf = leftLeaf.closest(\".leaves\").find(\".leaf--right\");\n\t leftLeaf.css(\"min-height\", \"\");\n\t rightLeaf.css(\"min-height\", \"\");\n\t\n\t if (leftLeaf.offset().top == rightLeaf.offset().top) {\n\t var h = Math.max(leftLeaf.parent().height(), rightLeaf.parent().height());\n\t leftLeaf.css(\"min-height\", h);\n\t rightLeaf.css(\"min-height\", h);\n\t }\n\t });\n\t\n\t $(\".navigation__list.nav_sub li a\").css(\"min-height\", \"\");\n\t\n\t var ulItems = $(\".navigation__list.nav_sub\");\n\t\n\t ulItems.each(function () {\n\t var ulItem = $(this);\n\t var sorter = {};\n\t var liItems = ulItem.find(\"li\");\n\t liItems.each(function () {\n\t var liItem = $(this);\n\t var bounds = liItem[0].getBoundingClientRect();\n\t //console.log(bounds);\n\t if (sorter[bounds.top] == undefined) {\n\t sorter[bounds.top] = [];\n\t }\n\t sorter[bounds.top].push(liItem);\n\t });\n\t for (var index in sorter) {\n\t var list = sorter[index];\n\t var maxH = 0;\n\t for (var i = 0; i < list.length; i++) {\n\t maxH = Math.max(maxH, list[i].outerHeight());\n\t }\n\t for (var i = 0; i < list.length; i++) {\n\t //maxH = Math.max(maxH,list[i].height());\n\t var diff = maxH - list[i].height();\n\t list[i].find('> a').css(\"min-height\", maxH);\n\t }\n\t }\n\t });\n\t}\n\n/***/ },\n/* 17 */\n/***/ function(module, exports) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\texports.default = function () {\n\t var pommi = $('.tifigs-pommfritt');\n\t var navi = $('.navigation__level.default > .navigation__list');\n\t var links = navi.find('>li');\n\t var active = navi.find('>li.active');\n\t var aColor = \"black\";\n\t //console.log(\"hoi\");\n\t\n\t links.on('mouseenter', function (e) {\n\t var target = $(e.currentTarget);\n\t navi.addClass(\"hovering\");\n\t //links.css('color', 'black');\n\t //target.css('color', \"black\");\n\t freese(e.target.clientWidth, target.offset().left - navi.offset().left);\n\t });\n\t\n\t if (active.length) {\n\t var activeItems = navi.find('>li.active');\n\t //activeItems.css('color', aColor)\n\t var activeLeft = activeItems.offset().left - navi.offset().left;\n\t var activeWidth = active[0].clientWidth;\n\t freese(activeWidth, activeLeft);\n\t\n\t // Zruggfreese\n\t links.on('mouseleave', function (e) {\n\t //links.css('color', 'black');\n\t //active.css('color', aColor);\n\t freese(activeWidth, activeLeft);\n\t navi.removeClass(\"hovering\");\n\t });\n\t } else {\n\t links.on('mouseleave', function (e) {\n\t var target = $(e.currentTarget);\n\t //links.css('color', 'black');\n\t freese(0, target.offset().left - navi.offset().left);\n\t navi.removeClass(\"hovering\");\n\t });\n\t }\n\t\n\t function freese(width, left) {\n\t pommi.css({\n\t width: width,\n\t transform: 'translate3d(' + left + 'px, 0, 0)'\n\t });\n\t }\n\t};\n\t\n\t;\n\n/***/ }\n/******/ ]);\n\n\n// WEBPACK FOOTER //\n// app.js"," \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\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\texports: {},\n \t\t\tid: moduleId,\n \t\t\tloaded: false\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.loaded = 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// __webpack_public_path__\n \t__webpack_require__.p = \"/Assets\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(0);\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap 230820594368e673f7dd","import $ from 'jquery';\r\nimport offcanvas from 'modules/offcanvas';\r\nimport navigation from 'modules/navigation';\r\nimport pushNavigation from 'modules/push-navigation';\r\nimport jqueryEventSwipe from 'jquery.event.swipe';\r\nimport slider from 'modules/slider';\r\nimport accordion from 'modules/accordion';\r\nimport collapse from 'modules/collapse';\r\nimport platform from 'modules/platform';\r\n\r\nimport map from 'modules/map';\r\nimport search from 'modules/search';\r\nimport blog from 'modules/blog';\r\n\r\nimport hacky from 'modules/hacky-fixes';\r\nimport pommfritt from 'modules/tifigs-pommfritt';\r\n\r\n//import inputs from 'modules/inputs';\r\n\r\n\r\n\r\n$(() => {\r\n\tplatform();\r\n offcanvas();\r\n navigation();\r\n pushNavigation();\r\n slider();\r\n accordion();\r\n collapse();\r\n pommfritt();\r\n //search();\r\n //inputs();\r\n});\r\n\n\n\n// WEBPACK FOOTER //\n// ./BBZP/Frontend/js/app.js","module.exports = jQuery;\n\n\n//////////////////\n// WEBPACK FOOTER\n// external \"jQuery\"\n// module id = 1\n// module chunks = 0","import $ from 'jquery';\r\n\r\nexport default function () {\r\n $('.offcanvas__toggler').on('click', (e) => {\r\n e.preventDefault();\r\n $('html').toggleClass('offcanvas--open');\r\n });\r\n}\r\n\n\n\n// WEBPACK FOOTER //\n// ./BBZP/Frontend/js/modules/offcanvas.js","import $ from 'jquery';\r\n\r\nexport default function () {\r\n const $lis = $('.default > .navigation__list > li');\r\n\r\n\r\n $(\".navigation__level:not(.default)\").each(function(){\r\n var ref = $(this); \r\n var title = ref.parent().find(\"a\").html(); \r\n ref.attr(\"data-title\",title);\r\n });\r\n\r\n const open = function open(event) {\r\n const $target = $(event.currentTarget);\r\n $target.siblings().removeClass('hover');\r\n $target.addClass('hover');\r\n };\r\n\r\n const close = function close(event) {\r\n const $target = $(event.currentTarget);\r\n $target.removeClass('hover');\r\n };\r\n\r\n const closeAll = function closeAll() {\r\n $lis.removeClass('hover');\r\n };\r\n\r\n const handleTouch = function handleTouch(event) {\r\n // Prevent artificial click events\r\n const $target = $(event.currentTarget);\r\n event.stopPropagation();\r\n if (!$target.hasClass('hover')) {\r\n event.preventDefault();\r\n $target.mouseenter();\r\n }\r\n };\r\n\r\n const hasTouchend = 'ontouchend' in window;\r\n if (hasTouchend) {\r\n $('body').on('touchend', closeAll);\r\n $lis.on('touchend', handleTouch);\r\n }\r\n\r\n $lis.on('mouseenter', open);\r\n $lis.on('mouseleave', close);\r\n}\r\n\n\n\n// WEBPACK FOOTER //\n// ./BBZP/Frontend/js/modules/navigation.js","import $ from 'jquery';\r\nimport * as core from 'modules/core';\r\n\r\nexport default function () {\r\n const $pushMenu = $('.navigation');\r\n const $deeper = $pushMenu.find('.deeper');\r\n const $back = $pushMenu.find('.back');\r\n const $levels = $pushMenu.find('.navigation__level:not(.default)');\r\n\r\n\r\n /**\r\n * Slide in the next deeper level\r\n * @param {object} e Event object\r\n * @return {undefined}\r\n */\r\n const slideIn = function (e) {\r\n \r\n // Only prevent default and add classes on mobile\r\n if (!core.isMobileView()) return;\r\n\r\n e.preventDefault();\r\n\r\n // Find next level\r\n const $target = $(e.currentTarget); // .deeper\r\n const $levelToFade = $target.closest('.navigation__level'); // .level\r\n const $levelToSlideIn = $target.closest('li').children('.navigation__level'); // .level\r\n\r\n $levelToSlideIn.addClass('in');\r\n $levelToFade.addClass('cover display-cover'); // Display cover to distinguish levels\r\n };\r\n\r\n /**\r\n * Slide back to the upper level\r\n * @param {object} e Event object\r\n * @return {undefined}\r\n */\r\n const slideOut = function (e) {\r\n // Only prevent default and add classes on mobile\r\n if (!core.isMobileView()) return;\r\n\r\n // Don't propagate swipe event, otherwise offcanvas\r\n // would close on every swipe\r\n e.preventDefault();\r\n e.stopPropagation();\r\n\r\n // Target is either the level itself (swipe) or the back button,\r\n // so we have to find the $level with different strategies in each case\r\n const $target = $(e.currentTarget); // .back\r\n const $levelToSlideOut = $target.closest('.navigation__level');\r\n const $levelToReveal = $levelToSlideOut.parent().closest('.navigation__level');\r\n\r\n // Make it go away\r\n $levelToSlideOut.removeClass('in');\r\n\r\n // Display the cover to visually distinguish the levels\r\n $levelToReveal.removeClass('cover');\r\n\r\n // Compatibility mode fallback, trigger event instantly\r\n if (core.getTransitionEndString() === 'transitionEndFallback') {\r\n $levelToReveal.trigger(core.getTransitionEndString());\r\n }\r\n\r\n /**\r\n * Hide the cover. If transitionend is not fired by\r\n * opacity, re-bind the event once and wait for opacity\r\n * to fire.\r\n * @param {Object} e jQuery event object\r\n * @return {undefined}\r\n */\r\n const slideOut_transitionend = function (e) {\r\n e.stopPropagation();\r\n const $target = $(e.currentTarget);\r\n\r\n if (e.originalEvent.propertyName !== 'opacity') {\r\n $target.one(core.getTransitionEndString(), slideOut_transitionend);\r\n return;\r\n }\r\n\r\n $target.removeClass('display-cover');\r\n };\r\n\r\n // Remove cover only when transition has ended\r\n $levelToReveal.one(core.getTransitionEndString(), slideOut_transitionend);\r\n };\r\n\r\n // Register events\r\n $deeper.on('click touchend', slideIn);\r\n $back.on('click', slideOut);\r\n $levels.on('swipeleft', slideOut);\r\n\r\n // Prevent transitionend events on deeper links\r\n // from bubbling to .level\r\n $deeper.on(core.getTransitionEndString(), (e) => {\r\n e.stopPropagation();\r\n });\r\n}\r\n\n\n\n// WEBPACK FOOTER //\n// ./BBZP/Frontend/js/modules/push-navigation.js","/**\r\n * Check for touch events (detects IE Tablet with Windows RT)\r\n * This function return true in the case is a:\r\n * - pc touchscreen enabled in mode not mobile\r\n * @return {Boolean} Is the website displayed on a touch enabled screen?\r\n */\r\nexport const isTouch = () => 'ontouchstart' in window;\r\n\r\n/**\r\n * See if it is one of microsoft f***** up tablet/laptop anomalies.\r\n * @return {Boolean} [description]\r\n */\r\nexport const isWindowsTouch = () => {\r\n\tif (navigator.msMaxTouchPoints !== undefined) {\r\n\t\tif (navigator.msMaxTouchPoints === 0) {\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}\r\n\r\n\treturn 'onmouseenter' in window && 'msMaxTouchPoints' in navigator;\r\n};\r\n\r\nexport const isIE = () => {\r\n\tlet msie = parseInt((/msie (\\d+)/.exec(navigator.userAgent.toLowerCase()) || [])[1]);\r\n\tif (isNaN(msie)) {\r\n\t msie = parseInt((/trident\\/.*; rv:(\\d+)/.exec(navigator.userAgent.toLowerCase()) || [])[1]);\r\n\t}\r\n\treturn msie;\r\n};\r\n\r\n/**\r\n * Get the correctly prefixed transitionend event string\r\n * @return {string} Transitionend event name\r\n */\r\nexport const getTransitionEndString = () => {\r\n\tlet i,\r\n\t undefined,\r\n\t el = document.createElement('div'),\r\n\t transitions = {\r\n\t transition: 'transitionend',\r\n\t OTransition: 'otransitionend', // oTransitionEnd in very old Opera\r\n\t MozTransition: 'transitionend',\r\n\t WebkitTransition: 'webkitTransitionEnd',\r\n\t };\r\n\r\n\tfor (i in transitions) {\r\n\t if (transitions.hasOwnProperty(i) && el.style[i] !== undefined) {\r\n\t return transitions[i];\r\n\t }\r\n\t}\r\n\r\n\t// Return a fallback for browsers who don't know transitions\r\n\treturn 'transitionEndFallback';\r\n};\r\n\r\n/**\r\n * Check if window width is below mobile threshhold\r\n * @return {Boolean} True if mobile, false if above or equal 768\r\n */\r\nexport const isMobileView = function(){\t\r\n\treturn window.innerWidth < 992;\t\r\n}; \r\n\r\nlet device = 'large';\t\t\t// 1920 <= px\r\nconst desktop = 1920;\t\t\t\t// 1200 - 1919 px\r\nconst laptop = 1200; \t\t\t\t// 992 - 1199 px\r\nconst tablet = 992;\t\t\t\t// 768 - 991 px\r\nconst mobile = 768;\t\t\t\t// 0 - 767 px\r\n\r\n/**\r\n * Get a string representing current viewport width\r\n * @return {string} Viewport width category\r\n */\r\nexport const getViewport = function () {\r\n\tlet width = window.innerWidth;\r\n\r\n\tif (width < desktop) device = 'desktop';\r\n\tif (width < laptop) device = 'laptop';\r\n\tif (width < tablet) device = 'tablet';\r\n\tif (width < mobile) device = 'mobile';\r\n\r\n\treturn device;\r\n};\r\n\n\n\n// WEBPACK FOOTER //\n// ./BBZP/Frontend/js/modules/core.js","// jQuery.event.swipe\n// 0.5\n// Stephen Band\n\n// Dependencies\n// jQuery.event.move 1.2\n\n// One of swipeleft, swiperight, swipeup or swipedown is triggered on\n// moveend, when the move has covered a threshold ratio of the dimension\n// of the target node, or has gone really fast. Threshold and velocity\n// sensitivity changed with:\n//\n// jQuery.event.special.swipe.settings.threshold\n// jQuery.event.special.swipe.settings.sensitivity\n\n(function (thisModule) {\n\tif (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module.\n define(['jquery'], thisModule);\n } else if ((typeof module !== \"undefined\" && module !== null) && module.exports) {\n module.exports = thisModule;\n\t} else {\n\t\t// Browser globals\n thisModule(jQuery);\n\t}\n})(function(jQuery, undefined){\n\tvar add = jQuery.event.add,\n\t \n\t remove = jQuery.event.remove,\n\n\t // Just sugar, so we can have arguments in the same order as\n\t // add and remove.\n\t trigger = function(node, type, data) {\n\t \tjQuery.event.trigger(type, data, node);\n\t },\n\n\t settings = {\n\t \t// Ratio of distance over target finger must travel to be\n\t \t// considered a swipe.\n\t \tthreshold: 0.4,\n\t \t// Faster fingers can travel shorter distances to be considered\n\t \t// swipes. 'sensitivity' controls how much. Bigger is shorter.\n\t \tsensitivity: 6\n\t };\n\n\tfunction moveend(e) {\n\t\tvar w, h, event;\n\n\t\tw = e.currentTarget.offsetWidth;\n\t\th = e.currentTarget.offsetHeight;\n\n\t\t// Copy over some useful properties from the move event\n\t\tevent = {\n\t\t\tdistX: e.distX,\n\t\t\tdistY: e.distY,\n\t\t\tvelocityX: e.velocityX,\n\t\t\tvelocityY: e.velocityY,\n\t\t\tfinger: e.finger\n\t\t};\n\n\t\t// Find out which of the four directions was swiped\n\t\tif (e.distX > e.distY) {\n\t\t\tif (e.distX > -e.distY) {\n\t\t\t\tif (e.distX/w > settings.threshold || e.velocityX * e.distX/w * settings.sensitivity > 1) {\n\t\t\t\t\tevent.type = 'swiperight';\n\t\t\t\t\ttrigger(e.currentTarget, event);\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif (-e.distY/h > settings.threshold || e.velocityY * e.distY/w * settings.sensitivity > 1) {\n\t\t\t\t\tevent.type = 'swipeup';\n\t\t\t\t\ttrigger(e.currentTarget, event);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\tif (e.distX > -e.distY) {\n\t\t\t\tif (e.distY/h > settings.threshold || e.velocityY * e.distY/w * settings.sensitivity > 1) {\n\t\t\t\t\tevent.type = 'swipedown';\n\t\t\t\t\ttrigger(e.currentTarget, event);\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif (-e.distX/w > settings.threshold || e.velocityX * e.distX/w * settings.sensitivity > 1) {\n\t\t\t\t\tevent.type = 'swipeleft';\n\t\t\t\t\ttrigger(e.currentTarget, event);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tfunction getData(node) {\n\t\tvar data = jQuery.data(node, 'event_swipe');\n\t\t\n\t\tif (!data) {\n\t\t\tdata = { count: 0 };\n\t\t\tjQuery.data(node, 'event_swipe', data);\n\t\t}\n\t\t\n\t\treturn data;\n\t}\n\n\tjQuery.event.special.swipe =\n\tjQuery.event.special.swipeleft =\n\tjQuery.event.special.swiperight =\n\tjQuery.event.special.swipeup =\n\tjQuery.event.special.swipedown = {\n\t\tsetup: function( data, namespaces, eventHandle ) {\n\t\t\tvar data = getData(this);\n\n\t\t\t// If another swipe event is already setup, don't setup again.\n\t\t\tif (data.count++ > 0) { return; }\n\n\t\t\tadd(this, 'moveend', moveend);\n\n\t\t\treturn true;\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tvar data = getData(this);\n\n\t\t\t// If another swipe event is still setup, don't teardown.\n\t\t\tif (--data.count > 0) { return; }\n\n\t\t\tremove(this, 'moveend', moveend);\n\n\t\t\treturn true;\n\t\t},\n\n\t\tsettings: settings\n\t};\n});\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/jquery.event.swipe/js/jquery.event.swipe.js\n// module id = 6\n// module chunks = 0","import $ from 'jquery';\r\nimport objectAssign from 'object-assign';\r\n\r\nexport default function () {\r\n const $sliders = $('.slider');\r\n const defaultOptions = {\r\n // Custom options are set inline\r\n dots: true,\r\n arrows: false,\r\n };\r\n\r\n $sliders.each(function () {\r\n const $slider = $(this);\r\n const inlineOptions = $slider.attr('data-slick');\r\n const mergedOptions = inlineOptions\r\n ? objectAssign({}, defaultOptions, JSON.parse(inlineOptions))\r\n : defaultOptions;\r\n $slider.slick(mergedOptions);\r\n });\r\n}\r\n\n\n\n// WEBPACK FOOTER //\n// ./BBZP/Frontend/js/modules/slider.js","/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\n\n'use strict';\n/* eslint-disable no-unused-vars */\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\n\nfunction toObject(val) {\n\tif (val === null || val === undefined) {\n\t\tthrow new TypeError('Object.assign cannot be called with null or undefined');\n\t}\n\n\treturn Object(val);\n}\n\nfunction shouldUseNative() {\n\ttry {\n\t\tif (!Object.assign) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Detect buggy property enumeration order in older V8 versions.\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=4118\n\t\tvar test1 = new String('abc'); // eslint-disable-line no-new-wrappers\n\t\ttest1[5] = 'de';\n\t\tif (Object.getOwnPropertyNames(test1)[0] === '5') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test2 = {};\n\t\tfor (var i = 0; i < 10; i++) {\n\t\t\ttest2['_' + String.fromCharCode(i)] = i;\n\t\t}\n\t\tvar order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n\t\t\treturn test2[n];\n\t\t});\n\t\tif (order2.join('') !== '0123456789') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test3 = {};\n\t\t'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n\t\t\ttest3[letter] = letter;\n\t\t});\n\t\tif (Object.keys(Object.assign({}, test3)).join('') !==\n\t\t\t\t'abcdefghijklmnopqrst') {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t} catch (err) {\n\t\t// We don't expect any of the above to throw, but better to be safe.\n\t\treturn false;\n\t}\n}\n\nmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n\tvar from;\n\tvar to = toObject(target);\n\tvar symbols;\n\n\tfor (var s = 1; s < arguments.length; s++) {\n\t\tfrom = Object(arguments[s]);\n\n\t\tfor (var key in from) {\n\t\t\tif (hasOwnProperty.call(from, key)) {\n\t\t\t\tto[key] = from[key];\n\t\t\t}\n\t\t}\n\n\t\tif (getOwnPropertySymbols) {\n\t\t\tsymbols = getOwnPropertySymbols(from);\n\t\t\tfor (var i = 0; i < symbols.length; i++) {\n\t\t\t\tif (propIsEnumerable.call(from, symbols[i])) {\n\t\t\t\t\tto[symbols[i]] = from[symbols[i]];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn to;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/object-assign/index.js\n// module id = 8\n// module chunks = 0","import $ from 'jquery';\r\n\r\nexport default function () {\r\n\tconst $accordionHeaders = $('.accordion__header');\r\n\t$accordionHeaders.on('click', (event) => {\r\n\t\tevent.preventDefault();// prevent jumping around fix\r\n\r\n\t\tconst $header = $(event.currentTarget);\r\n\r\n\t\tvar fold = $header.closest(\".accordion__fold\");\r\n\t\tconst id = $header.attr('for');\r\n\r\n\t\t\r\n\t\tvar checkbox = $(`#${id}`);\r\n\t\tcheckbox.is(':checked') ? checkbox.prop('checked', false) : checkbox.prop('checked', true);\r\n\t\t// $(\"#\"+id).prop(\"checked\",true);\r\n\t\tif (id){\r\n\t\t\t//console.log(id+\"FO\");\r\n\t\t\t//window.location.hash = id;\t\t\t\r\n\t\t}\r\n\t\t//quick fix for sliders not initializing in accordions\r\n\t\tsetTimeout(function(){\r\n\t\t\tif(checkbox.is(':checked')){\r\n\t\t\t\tvar tScroll = fold.offset().top - $(\"header.header\").height();\r\n\t\t\t\t\r\n\r\n\t\t\t\t$(\"body,html\").stop().animate({scrollTop:tScroll}, 500, 'swing');\r\n\t\t\t}\r\n\r\n\t\t\t$(window).trigger(\"resize\");\r\n\t\t\t$(document).trigger(\"accordion_open\",fold);\t\t\t\r\n\t\t},100);\t\r\n });\r\n}\r\n\n\n\n// WEBPACK FOOTER //\n// ./BBZP/Frontend/js/modules/accordion.js","import $ from 'jquery';\r\nimport debounce from 'lodash.debounce';\r\n\r\nexport default function () {\r\n const $window = $(window);\r\n const $collapsible = $('.collapsing-header');\r\n let oldScrollTop = 0;\r\n\r\n const collide = () => {\r\n // Don't do this on mobile\r\n if ($window.innerWidth() < 768) return;\r\n\r\n const scrollTop = document.documentElement.scrollTop || document.body.scrollTop;\r\n const collapsibleHeight = $collapsible.outerHeight();\r\n\r\n if (scrollTop > oldScrollTop && scrollTop > collapsibleHeight) {\r\n // Scrolling down\r\n $collapsible.css('margin-top', collapsibleHeight * -1);\r\n } else {\r\n // Scrolling up\r\n $collapsible.css('margin-top', 0);\r\n }\r\n\r\n oldScrollTop = scrollTop;\r\n };\r\n $window.on('scroll', false, debounce(collide, 100));\r\n}\r\n\n\n\n// WEBPACK FOOTER //\n// ./BBZP/Frontend/js/modules/collapse.js","/**\n * lodash (Custom Build)' + address[0] + '
' + address[1] + \",\" + address[2] + '' + '\"+item.Description+\"
\";\r\n\r\n\t\tbuff += \"\"\r\n\t}\r\n\r\n\tsResults.html(buff);\r\n\r\n\r\n\r\n}\n\n\n// WEBPACK FOOTER //\n// ./BBZP/Frontend/js/modules/search.js","var pIndex = 0;\r\nvar blogApp;\r\n\r\nvar loadMoreBtn;\r\n$(document).ready(function(){\r\n\tblogApp = $(\".blog-item-container\");\r\n\tif(blogApp.length == 0){\r\n\t\treturn;\r\n\t}\r\n\r\n\tloadMoreBtn = $(\".blog-load-more-btn\");\r\n\r\n\tloadMoreBtn.on(\"click\",loadMoreClick)\r\n\r\n});\r\n\r\nfunction loadMoreClick(event){\r\n\tevent.preventDefault();\r\n\tpIndex++;\r\n\tvar guid = blogApp.attr(\"data-guid\");\r\n\tvar url = blogApp.attr(\"data-blog-api-url\");\r\n\r\n\tloadMoreBtn.addClass(\"hidden\");\r\n\r\n\t//console.log(url + guid);\r\n\r\n\t$.ajax({\r\n\t\tdataType:\"json\",\r\n\t\turl:url,\r\n\t\tdata:{guid:guid,pageIndex:pIndex},\r\n\t\tsuccess:onServerData\r\n\r\n\t})\r\n}\r\n\r\nfunction onServerData(results){\r\n\t\r\n\t\r\n\tblogApp.find(\".row\").eq(0).append(results.Html);\r\n\r\n\tif(results.ShowButton){\r\n\t\tloadMoreBtn.removeClass(\"hidden\");\r\n\t}\r\n}\n\n\n// WEBPACK FOOTER //\n// ./BBZP/Frontend/js/modules/blog.js"," //due to time and budget more elegant solution doesn't exist....\r\n\r\n $(document).ready(function(){\r\n\r\n \t//ios flexbox issue fix.\r\n\r\n \t$(window).on(\"resize\",onResize);\r\n \tonResize();\r\n \t\r\n });\r\n\r\n\r\n\r\n\r\n function onResize(event){\r\n \tsetTimeout(function(){\r\n \t\tafterResize();\r\n \t},150);\r\n }\r\n\r\n function afterResize(){\r\n \t $(\".leaf--left\").each(function(){\r\n\r\n \t\tvar leftLeaf = $(this);\r\n \t\tvar rightLeaf = leftLeaf.closest(\".leaves\").find(\".leaf--right\");\r\n \t\tleftLeaf.css(\"min-height\",\"\");\r\n \t\trightLeaf.css(\"min-height\",\"\");\r\n\r\n \t\t\r\n \t\tif(leftLeaf.offset().top == rightLeaf.offset().top){\r\n \t\t\tvar h = Math.max(leftLeaf.parent().height(),rightLeaf.parent().height());\r\n \t\t\tleftLeaf.css(\"min-height\",h);\r\n \t\t\trightLeaf.css(\"min-height\",h);\r\n \t\t}\r\n \t});\r\n\r\n\t$(\".navigation__list.nav_sub li a\").css(\"min-height\",\"\");\r\n\r\n \tvar ulItems = $(\".navigation__list.nav_sub\");\r\n\r\n \tulItems.each(function(){\r\n \t\tvar ulItem = $(this);\r\n \t\tvar sorter= {};\t\r\n \t\tvar liItems = ulItem.find(\"li\");\r\n \t\tliItems.each(function(){\r\n \t\t\tvar liItem = $(this);\r\n \t\t\tvar bounds = liItem[0].getBoundingClientRect();\r\n \t\t\t//console.log(bounds);\r\n \t\t\tif(sorter[bounds.top]==undefined){\r\n \t\t\t\tsorter[bounds.top] = [];\r\n \t\t\t}\r\n \t\t\tsorter[bounds.top].push(liItem);\r\n \t\t});\r\n \t\tfor(var index in sorter){\r\n \t\t\tvar list = sorter[index];\r\n \t\t\tvar maxH = 0;\r\n \t\t\tfor(var i = 0 ; i < list.length;i++){\r\n \t\t\t\tmaxH = Math.max(maxH,list[i].outerHeight());\r\n \t\t\t}\r\n \t\t\tfor(var i = 0 ; i < list.length;i++){\r\n \t\t\t\t//maxH = Math.max(maxH,list[i].height());\r\n \t\t\t\tvar diff = maxH - list[i].height();\r\n \t\t\t\tlist[i].find('> a').css(\"min-height\",maxH);\r\n \t\t\t}\r\n \t\t\t\r\n \t\t}\r\n\r\n \t});\r\n \t\r\n }\r\n\r\n \n\n\n// WEBPACK FOOTER //\n// ./BBZP/Frontend/js/modules/hacky-fixes.js","export default function () {\r\n var pommi = $('.tifigs-pommfritt');\r\n var navi = $('.navigation__level.default > .navigation__list');\r\n var links = navi.find('>li');\r\n var active = navi.find('>li.active');\r\n var aColor = \"black\";\r\n //console.log(\"hoi\");\r\n\r\n links.on('mouseenter', function (e) {\r\n var target = $(e.currentTarget);\r\n navi.addClass(\"hovering\");\r\n //links.css('color', 'black');\r\n //target.css('color', \"black\");\r\n freese(e.target.clientWidth, target.offset().left - navi.offset().left);\r\n });\r\n\r\n if (active.length) {\r\n var activeItems = navi.find('>li.active');\r\n //activeItems.css('color', aColor)\r\n var activeLeft = activeItems.offset().left - navi.offset().left;\r\n var activeWidth = active[0].clientWidth;\r\n freese(activeWidth, activeLeft);\r\n\r\n // Zruggfreese\r\n links.on('mouseleave', function (e) {\r\n //links.css('color', 'black');\r\n //active.css('color', aColor);\r\n freese(activeWidth, activeLeft);\r\n navi.removeClass(\"hovering\");\r\n });\r\n } else {\r\n links.on('mouseleave', function (e) {\r\n var target = $(e.currentTarget);\r\n //links.css('color', 'black');\r\n freese(0, target.offset().left - navi.offset().left);\r\n navi.removeClass(\"hovering\");\r\n });\r\n }\r\n \r\n function freese (width, left) {\r\n pommi.css({\r\n width: width,\r\n transform: 'translate3d(' + left + 'px, 0, 0)'\r\n });\r\n }\r\n};\r\n\n\n\n// WEBPACK FOOTER //\n// ./BBZP/Frontend/js/modules/tifigs-pommfritt.js"],"sourceRoot":""}