{"version":3,"file":"index-Bhs6_I4h.js","sources":["../../../node_modules/waypoints/lib/noframework.waypoints.js","../../../node_modules/waypoints/lib/shortcuts/inview.js","../../../app/assets/javascripts/plugins/waypoint/index.ts"],"sourcesContent":["/*!\nWaypoints - 4.0.1\nCopyright © 2011-2016 Caleb Troughton\nLicensed under the MIT license.\nhttps://github.com/imakewebthings/waypoints/blob/master/licenses.txt\n*/\n(function() {\n 'use strict'\n\n var keyCounter = 0\n var allWaypoints = {}\n\n /* http://imakewebthings.com/waypoints/api/waypoint */\n function Waypoint(options) {\n if (!options) {\n throw new Error('No options passed to Waypoint constructor')\n }\n if (!options.element) {\n throw new Error('No element option passed to Waypoint constructor')\n }\n if (!options.handler) {\n throw new Error('No handler option passed to Waypoint constructor')\n }\n\n this.key = 'waypoint-' + keyCounter\n this.options = Waypoint.Adapter.extend({}, Waypoint.defaults, options)\n this.element = this.options.element\n this.adapter = new Waypoint.Adapter(this.element)\n this.callback = options.handler\n this.axis = this.options.horizontal ? 'horizontal' : 'vertical'\n this.enabled = this.options.enabled\n this.triggerPoint = null\n this.group = Waypoint.Group.findOrCreate({\n name: this.options.group,\n axis: this.axis\n })\n this.context = Waypoint.Context.findOrCreateByElement(this.options.context)\n\n if (Waypoint.offsetAliases[this.options.offset]) {\n this.options.offset = Waypoint.offsetAliases[this.options.offset]\n }\n this.group.add(this)\n this.context.add(this)\n allWaypoints[this.key] = this\n keyCounter += 1\n }\n\n /* Private */\n Waypoint.prototype.queueTrigger = function(direction) {\n this.group.queueTrigger(this, direction)\n }\n\n /* Private */\n Waypoint.prototype.trigger = function(args) {\n if (!this.enabled) {\n return\n }\n if (this.callback) {\n this.callback.apply(this, args)\n }\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/destroy */\n Waypoint.prototype.destroy = function() {\n this.context.remove(this)\n this.group.remove(this)\n delete allWaypoints[this.key]\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/disable */\n Waypoint.prototype.disable = function() {\n this.enabled = false\n return this\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/enable */\n Waypoint.prototype.enable = function() {\n this.context.refresh()\n this.enabled = true\n return this\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/next */\n Waypoint.prototype.next = function() {\n return this.group.next(this)\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/previous */\n Waypoint.prototype.previous = function() {\n return this.group.previous(this)\n }\n\n /* Private */\n Waypoint.invokeAll = function(method) {\n var allWaypointsArray = []\n for (var waypointKey in allWaypoints) {\n allWaypointsArray.push(allWaypoints[waypointKey])\n }\n for (var i = 0, end = allWaypointsArray.length; i < end; i++) {\n allWaypointsArray[i][method]()\n }\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/destroy-all */\n Waypoint.destroyAll = function() {\n Waypoint.invokeAll('destroy')\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/disable-all */\n Waypoint.disableAll = function() {\n Waypoint.invokeAll('disable')\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/enable-all */\n Waypoint.enableAll = function() {\n Waypoint.Context.refreshAll()\n for (var waypointKey in allWaypoints) {\n allWaypoints[waypointKey].enabled = true\n }\n return this\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/refresh-all */\n Waypoint.refreshAll = function() {\n Waypoint.Context.refreshAll()\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/viewport-height */\n Waypoint.viewportHeight = function() {\n return window.innerHeight || document.documentElement.clientHeight\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/viewport-width */\n Waypoint.viewportWidth = function() {\n return document.documentElement.clientWidth\n }\n\n Waypoint.adapters = []\n\n Waypoint.defaults = {\n context: window,\n continuous: true,\n enabled: true,\n group: 'default',\n horizontal: false,\n offset: 0\n }\n\n Waypoint.offsetAliases = {\n 'bottom-in-view': function() {\n return this.context.innerHeight() - this.adapter.outerHeight()\n },\n 'right-in-view': function() {\n return this.context.innerWidth() - this.adapter.outerWidth()\n }\n }\n\n window.Waypoint = Waypoint\n}())\n;(function() {\n 'use strict'\n\n function requestAnimationFrameShim(callback) {\n window.setTimeout(callback, 1000 / 60)\n }\n\n var keyCounter = 0\n var contexts = {}\n var Waypoint = window.Waypoint\n var oldWindowLoad = window.onload\n\n /* http://imakewebthings.com/waypoints/api/context */\n function Context(element) {\n this.element = element\n this.Adapter = Waypoint.Adapter\n this.adapter = new this.Adapter(element)\n this.key = 'waypoint-context-' + keyCounter\n this.didScroll = false\n this.didResize = false\n this.oldScroll = {\n x: this.adapter.scrollLeft(),\n y: this.adapter.scrollTop()\n }\n this.waypoints = {\n vertical: {},\n horizontal: {}\n }\n\n element.waypointContextKey = this.key\n contexts[element.waypointContextKey] = this\n keyCounter += 1\n if (!Waypoint.windowContext) {\n Waypoint.windowContext = true\n Waypoint.windowContext = new Context(window)\n }\n\n this.createThrottledScrollHandler()\n this.createThrottledResizeHandler()\n }\n\n /* Private */\n Context.prototype.add = function(waypoint) {\n var axis = waypoint.options.horizontal ? 'horizontal' : 'vertical'\n this.waypoints[axis][waypoint.key] = waypoint\n this.refresh()\n }\n\n /* Private */\n Context.prototype.checkEmpty = function() {\n var horizontalEmpty = this.Adapter.isEmptyObject(this.waypoints.horizontal)\n var verticalEmpty = this.Adapter.isEmptyObject(this.waypoints.vertical)\n var isWindow = this.element == this.element.window\n if (horizontalEmpty && verticalEmpty && !isWindow) {\n this.adapter.off('.waypoints')\n delete contexts[this.key]\n }\n }\n\n /* Private */\n Context.prototype.createThrottledResizeHandler = function() {\n var self = this\n\n function resizeHandler() {\n self.handleResize()\n self.didResize = false\n }\n\n this.adapter.on('resize.waypoints', function() {\n if (!self.didResize) {\n self.didResize = true\n Waypoint.requestAnimationFrame(resizeHandler)\n }\n })\n }\n\n /* Private */\n Context.prototype.createThrottledScrollHandler = function() {\n var self = this\n function scrollHandler() {\n self.handleScroll()\n self.didScroll = false\n }\n\n this.adapter.on('scroll.waypoints', function() {\n if (!self.didScroll || Waypoint.isTouch) {\n self.didScroll = true\n Waypoint.requestAnimationFrame(scrollHandler)\n }\n })\n }\n\n /* Private */\n Context.prototype.handleResize = function() {\n Waypoint.Context.refreshAll()\n }\n\n /* Private */\n Context.prototype.handleScroll = function() {\n var triggeredGroups = {}\n var axes = {\n horizontal: {\n newScroll: this.adapter.scrollLeft(),\n oldScroll: this.oldScroll.x,\n forward: 'right',\n backward: 'left'\n },\n vertical: {\n newScroll: this.adapter.scrollTop(),\n oldScroll: this.oldScroll.y,\n forward: 'down',\n backward: 'up'\n }\n }\n\n for (var axisKey in axes) {\n var axis = axes[axisKey]\n var isForward = axis.newScroll > axis.oldScroll\n var direction = isForward ? axis.forward : axis.backward\n\n for (var waypointKey in this.waypoints[axisKey]) {\n var waypoint = this.waypoints[axisKey][waypointKey]\n if (waypoint.triggerPoint === null) {\n continue\n }\n var wasBeforeTriggerPoint = axis.oldScroll < waypoint.triggerPoint\n var nowAfterTriggerPoint = axis.newScroll >= waypoint.triggerPoint\n var crossedForward = wasBeforeTriggerPoint && nowAfterTriggerPoint\n var crossedBackward = !wasBeforeTriggerPoint && !nowAfterTriggerPoint\n if (crossedForward || crossedBackward) {\n waypoint.queueTrigger(direction)\n triggeredGroups[waypoint.group.id] = waypoint.group\n }\n }\n }\n\n for (var groupKey in triggeredGroups) {\n triggeredGroups[groupKey].flushTriggers()\n }\n\n this.oldScroll = {\n x: axes.horizontal.newScroll,\n y: axes.vertical.newScroll\n }\n }\n\n /* Private */\n Context.prototype.innerHeight = function() {\n /*eslint-disable eqeqeq */\n if (this.element == this.element.window) {\n return Waypoint.viewportHeight()\n }\n /*eslint-enable eqeqeq */\n return this.adapter.innerHeight()\n }\n\n /* Private */\n Context.prototype.remove = function(waypoint) {\n delete this.waypoints[waypoint.axis][waypoint.key]\n this.checkEmpty()\n }\n\n /* Private */\n Context.prototype.innerWidth = function() {\n /*eslint-disable eqeqeq */\n if (this.element == this.element.window) {\n return Waypoint.viewportWidth()\n }\n /*eslint-enable eqeqeq */\n return this.adapter.innerWidth()\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/context-destroy */\n Context.prototype.destroy = function() {\n var allWaypoints = []\n for (var axis in this.waypoints) {\n for (var waypointKey in this.waypoints[axis]) {\n allWaypoints.push(this.waypoints[axis][waypointKey])\n }\n }\n for (var i = 0, end = allWaypoints.length; i < end; i++) {\n allWaypoints[i].destroy()\n }\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/context-refresh */\n Context.prototype.refresh = function() {\n /*eslint-disable eqeqeq */\n var isWindow = this.element == this.element.window\n /*eslint-enable eqeqeq */\n var contextOffset = isWindow ? undefined : this.adapter.offset()\n var triggeredGroups = {}\n var axes\n\n this.handleScroll()\n axes = {\n horizontal: {\n contextOffset: isWindow ? 0 : contextOffset.left,\n contextScroll: isWindow ? 0 : this.oldScroll.x,\n contextDimension: this.innerWidth(),\n oldScroll: this.oldScroll.x,\n forward: 'right',\n backward: 'left',\n offsetProp: 'left'\n },\n vertical: {\n contextOffset: isWindow ? 0 : contextOffset.top,\n contextScroll: isWindow ? 0 : this.oldScroll.y,\n contextDimension: this.innerHeight(),\n oldScroll: this.oldScroll.y,\n forward: 'down',\n backward: 'up',\n offsetProp: 'top'\n }\n }\n\n for (var axisKey in axes) {\n var axis = axes[axisKey]\n for (var waypointKey in this.waypoints[axisKey]) {\n var waypoint = this.waypoints[axisKey][waypointKey]\n var adjustment = waypoint.options.offset\n var oldTriggerPoint = waypoint.triggerPoint\n var elementOffset = 0\n var freshWaypoint = oldTriggerPoint == null\n var contextModifier, wasBeforeScroll, nowAfterScroll\n var triggeredBackward, triggeredForward\n\n if (waypoint.element !== waypoint.element.window) {\n elementOffset = waypoint.adapter.offset()[axis.offsetProp]\n }\n\n if (typeof adjustment === 'function') {\n adjustment = adjustment.apply(waypoint)\n }\n else if (typeof adjustment === 'string') {\n adjustment = parseFloat(adjustment)\n if (waypoint.options.offset.indexOf('%') > - 1) {\n adjustment = Math.ceil(axis.contextDimension * adjustment / 100)\n }\n }\n\n contextModifier = axis.contextScroll - axis.contextOffset\n waypoint.triggerPoint = Math.floor(elementOffset + contextModifier - adjustment)\n wasBeforeScroll = oldTriggerPoint < axis.oldScroll\n nowAfterScroll = waypoint.triggerPoint >= axis.oldScroll\n triggeredBackward = wasBeforeScroll && nowAfterScroll\n triggeredForward = !wasBeforeScroll && !nowAfterScroll\n\n if (!freshWaypoint && triggeredBackward) {\n waypoint.queueTrigger(axis.backward)\n triggeredGroups[waypoint.group.id] = waypoint.group\n }\n else if (!freshWaypoint && triggeredForward) {\n waypoint.queueTrigger(axis.forward)\n triggeredGroups[waypoint.group.id] = waypoint.group\n }\n else if (freshWaypoint && axis.oldScroll >= waypoint.triggerPoint) {\n waypoint.queueTrigger(axis.forward)\n triggeredGroups[waypoint.group.id] = waypoint.group\n }\n }\n }\n\n Waypoint.requestAnimationFrame(function() {\n for (var groupKey in triggeredGroups) {\n triggeredGroups[groupKey].flushTriggers()\n }\n })\n\n return this\n }\n\n /* Private */\n Context.findOrCreateByElement = function(element) {\n return Context.findByElement(element) || new Context(element)\n }\n\n /* Private */\n Context.refreshAll = function() {\n for (var contextId in contexts) {\n contexts[contextId].refresh()\n }\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/context-find-by-element */\n Context.findByElement = function(element) {\n return contexts[element.waypointContextKey]\n }\n\n window.onload = function() {\n if (oldWindowLoad) {\n oldWindowLoad()\n }\n Context.refreshAll()\n }\n\n\n Waypoint.requestAnimationFrame = function(callback) {\n var requestFn = window.requestAnimationFrame ||\n window.mozRequestAnimationFrame ||\n window.webkitRequestAnimationFrame ||\n requestAnimationFrameShim\n requestFn.call(window, callback)\n }\n Waypoint.Context = Context\n}())\n;(function() {\n 'use strict'\n\n function byTriggerPoint(a, b) {\n return a.triggerPoint - b.triggerPoint\n }\n\n function byReverseTriggerPoint(a, b) {\n return b.triggerPoint - a.triggerPoint\n }\n\n var groups = {\n vertical: {},\n horizontal: {}\n }\n var Waypoint = window.Waypoint\n\n /* http://imakewebthings.com/waypoints/api/group */\n function Group(options) {\n this.name = options.name\n this.axis = options.axis\n this.id = this.name + '-' + this.axis\n this.waypoints = []\n this.clearTriggerQueues()\n groups[this.axis][this.name] = this\n }\n\n /* Private */\n Group.prototype.add = function(waypoint) {\n this.waypoints.push(waypoint)\n }\n\n /* Private */\n Group.prototype.clearTriggerQueues = function() {\n this.triggerQueues = {\n up: [],\n down: [],\n left: [],\n right: []\n }\n }\n\n /* Private */\n Group.prototype.flushTriggers = function() {\n for (var direction in this.triggerQueues) {\n var waypoints = this.triggerQueues[direction]\n var reverse = direction === 'up' || direction === 'left'\n waypoints.sort(reverse ? byReverseTriggerPoint : byTriggerPoint)\n for (var i = 0, end = waypoints.length; i < end; i += 1) {\n var waypoint = waypoints[i]\n if (waypoint.options.continuous || i === waypoints.length - 1) {\n waypoint.trigger([direction])\n }\n }\n }\n this.clearTriggerQueues()\n }\n\n /* Private */\n Group.prototype.next = function(waypoint) {\n this.waypoints.sort(byTriggerPoint)\n var index = Waypoint.Adapter.inArray(waypoint, this.waypoints)\n var isLast = index === this.waypoints.length - 1\n return isLast ? null : this.waypoints[index + 1]\n }\n\n /* Private */\n Group.prototype.previous = function(waypoint) {\n this.waypoints.sort(byTriggerPoint)\n var index = Waypoint.Adapter.inArray(waypoint, this.waypoints)\n return index ? this.waypoints[index - 1] : null\n }\n\n /* Private */\n Group.prototype.queueTrigger = function(waypoint, direction) {\n this.triggerQueues[direction].push(waypoint)\n }\n\n /* Private */\n Group.prototype.remove = function(waypoint) {\n var index = Waypoint.Adapter.inArray(waypoint, this.waypoints)\n if (index > -1) {\n this.waypoints.splice(index, 1)\n }\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/first */\n Group.prototype.first = function() {\n return this.waypoints[0]\n }\n\n /* Public */\n /* http://imakewebthings.com/waypoints/api/last */\n Group.prototype.last = function() {\n return this.waypoints[this.waypoints.length - 1]\n }\n\n /* Private */\n Group.findOrCreate = function(options) {\n return groups[options.axis][options.name] || new Group(options)\n }\n\n Waypoint.Group = Group\n}())\n;(function() {\n 'use strict'\n\n var Waypoint = window.Waypoint\n\n function isWindow(element) {\n return element === element.window\n }\n\n function getWindow(element) {\n if (isWindow(element)) {\n return element\n }\n return element.defaultView\n }\n\n function NoFrameworkAdapter(element) {\n this.element = element\n this.handlers = {}\n }\n\n NoFrameworkAdapter.prototype.innerHeight = function() {\n var isWin = isWindow(this.element)\n return isWin ? this.element.innerHeight : this.element.clientHeight\n }\n\n NoFrameworkAdapter.prototype.innerWidth = function() {\n var isWin = isWindow(this.element)\n return isWin ? this.element.innerWidth : this.element.clientWidth\n }\n\n NoFrameworkAdapter.prototype.off = function(event, handler) {\n function removeListeners(element, listeners, handler) {\n for (var i = 0, end = listeners.length - 1; i < end; i++) {\n var listener = listeners[i]\n if (!handler || handler === listener) {\n element.removeEventListener(listener)\n }\n }\n }\n\n var eventParts = event.split('.')\n var eventType = eventParts[0]\n var namespace = eventParts[1]\n var element = this.element\n\n if (namespace && this.handlers[namespace] && eventType) {\n removeListeners(element, this.handlers[namespace][eventType], handler)\n this.handlers[namespace][eventType] = []\n }\n else if (eventType) {\n for (var ns in this.handlers) {\n removeListeners(element, this.handlers[ns][eventType] || [], handler)\n this.handlers[ns][eventType] = []\n }\n }\n else if (namespace && this.handlers[namespace]) {\n for (var type in this.handlers[namespace]) {\n removeListeners(element, this.handlers[namespace][type], handler)\n }\n this.handlers[namespace] = {}\n }\n }\n\n /* Adapted from jQuery 1.x offset() */\n NoFrameworkAdapter.prototype.offset = function() {\n if (!this.element.ownerDocument) {\n return null\n }\n\n var documentElement = this.element.ownerDocument.documentElement\n var win = getWindow(this.element.ownerDocument)\n var rect = {\n top: 0,\n left: 0\n }\n\n if (this.element.getBoundingClientRect) {\n rect = this.element.getBoundingClientRect()\n }\n\n return {\n top: rect.top + win.pageYOffset - documentElement.clientTop,\n left: rect.left + win.pageXOffset - documentElement.clientLeft\n }\n }\n\n NoFrameworkAdapter.prototype.on = function(event, handler) {\n var eventParts = event.split('.')\n var eventType = eventParts[0]\n var namespace = eventParts[1] || '__default'\n var nsHandlers = this.handlers[namespace] = this.handlers[namespace] || {}\n var nsTypeList = nsHandlers[eventType] = nsHandlers[eventType] || []\n\n nsTypeList.push(handler)\n this.element.addEventListener(eventType, handler)\n }\n\n NoFrameworkAdapter.prototype.outerHeight = function(includeMargin) {\n var height = this.innerHeight()\n var computedStyle\n\n if (includeMargin && !isWindow(this.element)) {\n computedStyle = window.getComputedStyle(this.element)\n height += parseInt(computedStyle.marginTop, 10)\n height += parseInt(computedStyle.marginBottom, 10)\n }\n\n return height\n }\n\n NoFrameworkAdapter.prototype.outerWidth = function(includeMargin) {\n var width = this.innerWidth()\n var computedStyle\n\n if (includeMargin && !isWindow(this.element)) {\n computedStyle = window.getComputedStyle(this.element)\n width += parseInt(computedStyle.marginLeft, 10)\n width += parseInt(computedStyle.marginRight, 10)\n }\n\n return width\n }\n\n NoFrameworkAdapter.prototype.scrollLeft = function() {\n var win = getWindow(this.element)\n return win ? win.pageXOffset : this.element.scrollLeft\n }\n\n NoFrameworkAdapter.prototype.scrollTop = function() {\n var win = getWindow(this.element)\n return win ? win.pageYOffset : this.element.scrollTop\n }\n\n NoFrameworkAdapter.extend = function() {\n var args = Array.prototype.slice.call(arguments)\n\n function merge(target, obj) {\n if (typeof target === 'object' && typeof obj === 'object') {\n for (var key in obj) {\n if (obj.hasOwnProperty(key)) {\n target[key] = obj[key]\n }\n }\n }\n\n return target\n }\n\n for (var i = 1, end = args.length; i < end; i++) {\n merge(args[0], args[i])\n }\n return args[0]\n }\n\n NoFrameworkAdapter.inArray = function(element, array, i) {\n return array == null ? -1 : array.indexOf(element, i)\n }\n\n NoFrameworkAdapter.isEmptyObject = function(obj) {\n /* eslint no-unused-vars: 0 */\n for (var name in obj) {\n return false\n }\n return true\n }\n\n Waypoint.adapters.push({\n name: 'noframework',\n Adapter: NoFrameworkAdapter\n })\n Waypoint.Adapter = NoFrameworkAdapter\n}())\n;","/*!\nWaypoints Inview Shortcut - 4.0.1\nCopyright © 2011-2016 Caleb Troughton\nLicensed under the MIT license.\nhttps://github.com/imakewebthings/waypoints/blob/master/licenses.txt\n*/\n(function() {\n 'use strict'\n\n function noop() {}\n\n var Waypoint = window.Waypoint\n\n /* http://imakewebthings.com/waypoints/shortcuts/inview */\n function Inview(options) {\n this.options = Waypoint.Adapter.extend({}, Inview.defaults, options)\n this.axis = this.options.horizontal ? 'horizontal' : 'vertical'\n this.waypoints = []\n this.element = this.options.element\n this.createWaypoints()\n }\n\n /* Private */\n Inview.prototype.createWaypoints = function() {\n var configs = {\n vertical: [{\n down: 'enter',\n up: 'exited',\n offset: '100%'\n }, {\n down: 'entered',\n up: 'exit',\n offset: 'bottom-in-view'\n }, {\n down: 'exit',\n up: 'entered',\n offset: 0\n }, {\n down: 'exited',\n up: 'enter',\n offset: function() {\n return -this.adapter.outerHeight()\n }\n }],\n horizontal: [{\n right: 'enter',\n left: 'exited',\n offset: '100%'\n }, {\n right: 'entered',\n left: 'exit',\n offset: 'right-in-view'\n }, {\n right: 'exit',\n left: 'entered',\n offset: 0\n }, {\n right: 'exited',\n left: 'enter',\n offset: function() {\n return -this.adapter.outerWidth()\n }\n }]\n }\n\n for (var i = 0, end = configs[this.axis].length; i < end; i++) {\n var config = configs[this.axis][i]\n this.createWaypoint(config)\n }\n }\n\n /* Private */\n Inview.prototype.createWaypoint = function(config) {\n var self = this\n this.waypoints.push(new Waypoint({\n context: this.options.context,\n element: this.options.element,\n enabled: this.options.enabled,\n handler: (function(config) {\n return function(direction) {\n self.options[config[direction]].call(self, direction)\n }\n }(config)),\n offset: config.offset,\n horizontal: this.options.horizontal\n }))\n }\n\n /* Public */\n Inview.prototype.destroy = function() {\n for (var i = 0, end = this.waypoints.length; i < end; i++) {\n this.waypoints[i].destroy()\n }\n this.waypoints = []\n }\n\n Inview.prototype.disable = function() {\n for (var i = 0, end = this.waypoints.length; i < end; i++) {\n this.waypoints[i].disable()\n }\n }\n\n Inview.prototype.enable = function() {\n for (var i = 0, end = this.waypoints.length; i < end; i++) {\n this.waypoints[i].enable()\n }\n }\n\n Inview.defaults = {\n context: window,\n enabled: true,\n enter: noop,\n entered: noop,\n exit: noop,\n exited: noop\n }\n\n Waypoint.Inview = Inview\n}())\n;","\nimport \"waypoints/lib/noframework.waypoints\"\nimport \"waypoints/lib/shortcuts/inview\"\n\ninterface WaypointInviewOptions {\n element: HTMLElement\n enter?: (direction: (\"up\" | \"down\" | \"left\" | \"right\")) => void\n entered?: (direction: (\"up\" | \"down\" | \"left\" | \"right\")) => void\n exit?: (direction: (\"up\" | \"down\" | \"left\" | \"right\")) => void\n exited?: (direction: (\"up\" | \"down\" | \"left\" | \"right\")) => void\n\n context?: HTMLElement\n enabled?: boolean\n horizontal?: boolean\n}\ndeclare class Inview {\n constructor(options: WaypointInviewOptions)\n\n // Instance Methods\n public destroy(): Waypoint\n public disable(): Waypoint\n public enable(): Waypoint\n}\ninterface Waypoint {\n Inview: typeof Inview\n}\n\ndeclare global {\n interface Window {\n Waypoint: Waypoint\n }\n}\n\nexport default window.Waypoint\n"],"names":["keyCounter","allWaypoints","Waypoint","options","direction","args","method","allWaypointsArray","waypointKey","i","end","requestAnimationFrameShim","callback","contexts","oldWindowLoad","Context","element","waypoint","axis","horizontalEmpty","verticalEmpty","isWindow","self","resizeHandler","scrollHandler","triggeredGroups","axes","axisKey","isForward","wasBeforeTriggerPoint","nowAfterTriggerPoint","crossedForward","crossedBackward","groupKey","contextOffset","adjustment","oldTriggerPoint","elementOffset","freshWaypoint","contextModifier","wasBeforeScroll","nowAfterScroll","triggeredBackward","triggeredForward","contextId","requestFn","byTriggerPoint","a","b","byReverseTriggerPoint","groups","Group","waypoints","reverse","index","isLast","getWindow","NoFrameworkAdapter","isWin","event","handler","removeListeners","listeners","listener","eventParts","eventType","namespace","ns","type","documentElement","win","rect","nsHandlers","nsTypeList","includeMargin","height","computedStyle","width","merge","target","obj","key","array","name","noop","Inview","configs","config"],"mappings":"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","x_google_ignoreList":[0,1]}