<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
Waypoints Sticky Element Shortcut - 4.0.1
Copyright Â© 2011-2016 Caleb Troughton
Licensed under the MIT license.
https://github.com/imakewebthings/waypoints/blob/master/licenses.txt
*/
!function(){"use strict";function t(s){this.options=e.extend({},i.defaults,t.defaults,s),this.element=this.options.element,this.$element=e(this.element),this.createWrapper(),this.createWaypoint()}var e=window.jQuery,i=window.Waypoint;t.prototype.createWaypoint=function(){var t=this.options.handler;this.waypoint=new i(e.extend({},this.options,{element:this.wrapper,handler:e.proxy(function(e){var i=this.options.direction.indexOf(e)&gt;-1,s=i?this.$element.outerHeight(!0):"";this.$wrapper.height(s),this.$element.toggleClass(this.options.stuckClass,i),t&amp;&amp;t.call(this,e)},this)}))},t.prototype.createWrapper=function(){this.options.wrapper&amp;&amp;this.$element.wrap(this.options.wrapper),this.$wrapper=this.$element.parent(),this.wrapper=this.$wrapper[0]},t.prototype.destroy=function(){this.$element.parent()[0]===this.wrapper&amp;&amp;(this.waypoint.destroy(),this.$element.removeClass(this.options.stuckClass),this.options.wrapper&amp;&amp;this.$element.unwrap())},t.defaults={wrapper:'&lt;div class="sticky-wrapper" /&gt;',stuckClass:"stuck",direction:"down right"},i.Sticky=t}();</pre></body></html>