Advertisement
Guest User

avia.js

a guest
Oct 19th, 2017
415
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 134.26 KB | None | 0 0
  1. (function($)
  2. {
  3. "use strict";
  4.  
  5. //fix back forward cache issue: http://stackoverflow.com/questions/11979156/mobile-safari-back-button
  6. $(window).bind("pageshow", function(event) {
  7. if (event.originalEvent.persisted) {
  8. avia_site_preloader();
  9. }
  10. });
  11.  
  12.  
  13. $(document).ready(function()
  14. {
  15.  
  16. var aviabodyclasses = AviaBrowserDetection('html');
  17.  
  18. $.avia_utilities = $.avia_utilities || {};
  19. if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) && 'ontouchstart' in document.documentElement)
  20. {
  21. $.avia_utilities.isMobile = true;
  22. }
  23. else
  24. {
  25. $.avia_utilities.isMobile = false;
  26. }
  27.  
  28. //activates the hamburger mobile menu
  29. avia_hamburger_menu();
  30.  
  31. // decreases header size when user scrolls down
  32. avia_header_size();
  33.  
  34. // set sidebar main menu option
  35. avia_sidebar_menu();
  36.  
  37. //activates the sticky submenu
  38. avia_sticky_submenu();
  39.  
  40. //show scroll top but1ton
  41. avia_scroll_top_fade();
  42.  
  43. //site preloader script
  44. avia_site_preloader();
  45.  
  46. //calculate width of content
  47. aviaCalcContentWidth();
  48.  
  49. //creates search tooltip
  50. new $.AviaTooltip({"class": 'avia-search-tooltip',data: 'avia-search-tooltip', event:'click', position:'bottom', scope: "body", attach:'element', within_screen: true});
  51.  
  52. //creates relate posts tooltip
  53. new $.AviaTooltip({"class": 'avia-related-tooltip', data: 'avia-related-tooltip', scope: ".related_posts, .av-share-box", attach:'element', delay:0});
  54.  
  55. //creates ajax search
  56. new $.AviaAjaxSearch({scope:'#header'});
  57.  
  58. // actiavte portfolio sorting
  59. if($.fn.avia_iso_sort)
  60. $('.grid-sort-container').avia_iso_sort();
  61.  
  62. //activates the mega menu javascript
  63. if($.fn.aviaMegamenu)
  64. $(".main_menu .menu").aviaMegamenu({modify_position:true});
  65.  
  66.  
  67. $.avia_utilities.avia_ajax_call();
  68.  
  69.  
  70. });
  71.  
  72. $.avia_utilities = $.avia_utilities || {};
  73.  
  74. $.avia_utilities.avia_ajax_call = function(container)
  75. {
  76. if(typeof container == 'undefined'){ container = 'body';};
  77.  
  78.  
  79. $('a.avianolink').on('click', function(e){ e.preventDefault(); });
  80. $('a.aviablank').attr('target', '_blank');
  81.  
  82. //activates the prettyphoto lightbox
  83. $(container).avia_activate_lightbox();
  84.  
  85. //scrollspy for main menu. must be located before smoothscrolling
  86. if($.fn.avia_scrollspy)
  87. {
  88. if(container == 'body')
  89. {
  90. $('body').avia_scrollspy({target:'.main_menu .menu li > a'});
  91. }
  92. else
  93. {
  94. $('body').avia_scrollspy('refresh');
  95. }
  96. }
  97.  
  98.  
  99.  
  100. //smooth scrooling
  101. if($.fn.avia_smoothscroll)
  102. $('a[href*="#"]', container).avia_smoothscroll(container);
  103.  
  104. avia_small_fixes(container);
  105.  
  106. avia_hover_effect(container);
  107.  
  108. avia_iframe_fix(container);
  109.  
  110. //activate html5 video player
  111. if($.fn.avia_html5_activation && $.fn.mediaelementplayer)
  112. $(".avia_video, .avia_audio", container).avia_html5_activation({ratio:'16:9'});
  113.  
  114. }
  115.  
  116. // -------------------------------------------------------------------------------------------
  117. // Error log helper
  118. // -------------------------------------------------------------------------------------------
  119.  
  120. $.avia_utilities.log = function(text, type, extra)
  121. {
  122. if(typeof console == 'undefined'){return;} if(typeof type == 'undefined'){type = "log"} type = "AVIA-" + type.toUpperCase();
  123. console.log("["+type+"] "+text); if(typeof extra != 'undefined') console.log(extra);
  124. }
  125.  
  126.  
  127.  
  128. // -------------------------------------------------------------------------------------------
  129. // keep track of the browser and content width
  130. // -------------------------------------------------------------------------------------------
  131.  
  132.  
  133.  
  134. function aviaCalcContentWidth()
  135. {
  136.  
  137. var win = $(window),
  138. width_select= $('html').is('.html_header_sidebar') ? "#main" : "#header",
  139. outer = $(width_select),
  140. outerParent = outer.parents('div:eq(0)'),
  141. the_main = $(width_select + ' .container:first'),
  142. css_block = "",
  143. calc_dimensions = function()
  144. {
  145. var css = "",
  146. w_12 = Math.round( the_main.width() ),
  147. w_outer = Math.round( outer.width() ),
  148. w_inner = Math.round( outerParent.width() );
  149.  
  150. //css rules for mega menu
  151. css += " #header .three.units{width:" + ( w_12 * 0.25)+ "px;}";
  152. css += " #header .six.units{width:" + ( w_12 * 0.50)+ "px;}";
  153. css += " #header .nine.units{width:" + ( w_12 * 0.75)+ "px;}";
  154. css += " #header .twelve.units{width:" +( w_12 ) + "px;}";
  155.  
  156. //css rules for tab sections
  157. css += " .av-framed-box .av-layout-tab-inner .container{width:" +( w_inner )+ "px;}";
  158. css += " .html_header_sidebar .av-layout-tab-inner .container{width:" +( w_outer )+ "px;}";
  159. css += " .boxed .av-layout-tab-inner .container{width:" +( w_outer )+ "px;}";
  160.  
  161. //css rules for submenu container
  162. css += " .av-framed-box#top .av-submenu-container{width:" +( w_inner )+ "px;}";
  163.  
  164. //ie8 needs different insert method
  165. try{
  166. css_block.text(css);
  167. }
  168. catch(err){
  169. css_block.remove();
  170. css_block = $("<style type='text/css' id='av-browser-width-calc'>"+css+"</style>").appendTo('head:first');
  171. }
  172.  
  173. };
  174.  
  175.  
  176.  
  177. if($('.avia_mega_div').length > 0 || $('.av-layout-tab-inner').length > 0 || $('.av-submenu-container').length > 0)
  178. {
  179. css_block = $("<style type='text/css' id='av-browser-width-calc'></style>").appendTo('head:first')
  180. win.on( 'debouncedresize', calc_dimensions);
  181. calc_dimensions();
  182. }
  183. }
  184.  
  185.  
  186.  
  187.  
  188.  
  189. // -------------------------------------------------------------------------------------------
  190. // modified SCROLLSPY by bootstrap
  191. // -------------------------------------------------------------------------------------------
  192.  
  193.  
  194. function AviaScrollSpy(element, options)
  195. {
  196. var self = this;
  197.  
  198. var process = $.proxy(self.process, self)
  199. , refresh = $.proxy(self.refresh, self)
  200. , $element = $(element).is('body') ? $(window) : $(element)
  201. , href
  202. self.$body = $('body')
  203. self.$win = $(window)
  204. self.options = $.extend({}, $.fn.avia_scrollspy.defaults, options)
  205. self.selector = (self.options.target
  206. || ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
  207. || '')
  208.  
  209. self.activation_true = false;
  210.  
  211. if(self.$body.find(self.selector + "[href*='#']").length)
  212. {
  213. self.$scrollElement = $element.on('scroll.scroll-spy.data-api', process);
  214. self.$win.on('av-height-change', refresh);
  215. self.$body.on('av_resize_finished', refresh);
  216. self.activation_true = true;
  217. self.checkFirst();
  218.  
  219. setTimeout(function()
  220. {
  221. self.refresh()
  222. self.process()
  223.  
  224. },100);
  225. }
  226.  
  227. }
  228.  
  229. AviaScrollSpy.prototype = {
  230.  
  231. constructor: AviaScrollSpy
  232. , checkFirst: function () {
  233.  
  234. var current = window.location.href.split('#')[0],
  235. matching_link = this.$body.find(this.selector + "[href='"+current+"']").attr('href',current+'#top');
  236. }
  237. , refresh: function () {
  238.  
  239. if(!this.activation_true) return;
  240.  
  241. var self = this
  242. , $targets
  243.  
  244. this.offsets = $([])
  245. this.targets = $([])
  246.  
  247. $targets = this.$body
  248. .find(this.selector)
  249. .map(function () {
  250. var $el = $(this)
  251. , href = $el.data('target') || $el.attr('href')
  252. , hash = this.hash
  253. , hash = hash.replace(/\//g, "")
  254. , $href = /^#\w/.test(hash) && $(hash)
  255.  
  256. return ( $href
  257. && $href.length
  258. && [[ $href.position().top + (!$.isWindow(self.$scrollElement.get(0)) && self.$scrollElement.scrollTop()), href ]] ) || null
  259. })
  260. .sort(function (a, b) { return a[0] - b[0] })
  261. .each(function () {
  262. self.offsets.push(this[0])
  263. self.targets.push(this[1])
  264. })
  265.  
  266. }
  267.  
  268. , process: function () {
  269.  
  270. if(!this.offsets) return;
  271. if(isNaN(this.options.offset)) this.options.offset = 0;
  272.  
  273. var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
  274. , scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight
  275. , maxScroll = scrollHeight - this.$scrollElement.height()
  276. , offsets = this.offsets
  277. , targets = this.targets
  278. , activeTarget = this.activeTarget
  279. , i
  280.  
  281. if (scrollTop >= maxScroll) {
  282. return activeTarget != (i = targets.last()[0])
  283. && this.activate ( i )
  284. }
  285.  
  286. for (i = offsets.length; i--;) {
  287. activeTarget != targets[i]
  288. && scrollTop >= offsets[i]
  289. && (!offsets[i + 1] || scrollTop <= offsets[i + 1])
  290. && this.activate( targets[i] )
  291. }
  292. }
  293.  
  294. , activate: function (target) {
  295. var active
  296. , selector
  297.  
  298. this.activeTarget = target
  299.  
  300. $(this.selector)
  301. .parent('.' + this.options.applyClass)
  302. .removeClass(this.options.applyClass)
  303.  
  304. selector = this.selector
  305. + '[data-target="' + target + '"],'
  306. + this.selector + '[href="' + target + '"]'
  307.  
  308.  
  309.  
  310. active = $(selector)
  311. .parent('li')
  312. .addClass(this.options.applyClass)
  313.  
  314. if (active.parent('.sub-menu').length) {
  315. active = active.closest('li.dropdown_ul_available').addClass(this.options.applyClass)
  316. }
  317.  
  318. active.trigger('activate')
  319. }
  320.  
  321. }
  322.  
  323.  
  324. /* AviaScrollSpy PLUGIN DEFINITION
  325. * =========================== */
  326.  
  327. $.fn.avia_scrollspy = function (option) {
  328. return this.each(function () {
  329. var $this = $(this)
  330. , data = $this.data('scrollspy')
  331. , options = typeof option == 'object' && option
  332. if (!data) $this.data('scrollspy', (data = new AviaScrollSpy(this, options)))
  333. if (typeof option == 'string') data[option]()
  334. })
  335. }
  336.  
  337. $.fn.avia_scrollspy.Constructor = AviaScrollSpy
  338.  
  339. $.fn.avia_scrollspy.calc_offset = function()
  340. {
  341. var offset_1 = (parseInt($('.html_header_sticky #main').data('scroll-offset'), 10)) || 0,
  342. offset_2 = ($(".html_header_sticky:not(.html_top_nav_header) #header_main_alternate").outerHeight()) || 0,
  343. offset_3 = ($(".html_header_sticky.html_header_unstick_top_disabled #header_meta").outerHeight()) || 0,
  344. offset_4 = 1,
  345. offset_5 = parseInt($('html').css('margin-top'),10) || 0,
  346. offset_6 = parseInt($('.av-frame-top ').outerHeight(),10) || 0;
  347.  
  348. return offset_1 + offset_2 + offset_3 + offset_4 + offset_5 + offset_6;
  349. }
  350.  
  351. $.fn.avia_scrollspy.defaults =
  352. {
  353. offset: $.fn.avia_scrollspy.calc_offset(),
  354. applyClass: 'current-menu-item'
  355. }
  356.  
  357.  
  358. function avia_site_preloader()
  359. {
  360. var win = $(window), preloader_active = $('html.av-preloader-active'), pre_wrap;
  361.  
  362. if( preloader_active.length )
  363. {
  364. var hide = function()
  365. {
  366. pre_wrap.avia_animate({opacity:0}, function()
  367. {
  368. preloader_active.removeClass('av-preloader-active');
  369. });
  370. };
  371.  
  372.  
  373. pre_wrap = $('.av-siteloader-wrap');
  374. setTimeout(function()
  375. {
  376. $.avia_utilities.preload({container: preloader_active, global_callback: hide });
  377.  
  378. //fallback
  379. setTimeout(function()
  380. {
  381. if(preloader_active.is('.av-preloader-active'))
  382. {
  383. hide();
  384. $.avia_utilities.log('Hide Preloader (Fallback)');
  385. }
  386.  
  387. },4000);
  388.  
  389. if( pre_wrap.is('.av-transition-enabled') )
  390. {
  391. var comp = new RegExp(location.host),
  392. exclude = " .no-transition, .mfp-iframe, .lightbox-added, .grid-links-ajax a, #menu-item-search a";
  393.  
  394. preloader_active.on('click', 'a:not('+exclude+')',function(e)
  395. {
  396. if(!e.metaKey && !e.ctrlKey && !e.altKey && !e.shiftKey)
  397. {
  398. var link = this;
  399. if(comp.test(link.href) && link.href.split('#')[0] != location.href.split('#')[0] && link.target == "")
  400. {
  401. if(link.href.indexOf('mailto:') == -1 && link.href.indexOf('add-to-cart=') == -1 )
  402. {
  403. e.preventDefault();
  404. preloader_active.addClass('av-preloader-active av-preloader-reactive');
  405. pre_wrap.avia_animate({opacity:1}, function()
  406. {
  407. window.location = link.href;
  408. });
  409. }
  410. }
  411. }
  412. });
  413. }
  414.  
  415.  
  416. }, 500);
  417. }
  418. }
  419.  
  420.  
  421. // -------------------------------------------------------------------------------------------
  422. // detect browser and add class to body
  423. // -------------------------------------------------------------------------------------------
  424.  
  425. function AviaBrowserDetection(outputClassElement)
  426. {
  427. if(typeof($.browser) !== 'undefined')
  428. {
  429. var bodyclass = '', version = $.browser.version ? parseInt($.browser.version) : "";
  430.  
  431. if($.browser.msie){
  432. bodyclass += 'avia-msie';
  433. }else if($.browser.webkit){
  434. bodyclass += 'avia-webkit';
  435. }else if($.browser.mozilla)
  436. {
  437. bodyclass += 'avia-mozilla';
  438. }
  439.  
  440. if($.browser.version) bodyclass += ' ' + bodyclass + '-' + version + ' ';
  441. if($.browser.name) bodyclass += ' avia-' + $.browser.name + ' avia-' +$.browser.name +'-' + version + ' ';
  442.  
  443. if($.browser.ipad){
  444. bodyclass += ' avia-ipad ';
  445. }else if($.browser.iphone){
  446. bodyclass += ' avia-iphone ';
  447. }else if($.browser.android){
  448. bodyclass += ' avia-android ';
  449. }else if($.browser.win){
  450. bodyclass += ' avia-windows ';
  451. }else if($.browser.mac){
  452. bodyclass += ' avia-mac ';
  453. }else if($.browser.linux){
  454. bodyclass += ' avia-linux ';
  455. }
  456. }
  457.  
  458. if(outputClassElement) $(outputClassElement).addClass(bodyclass)
  459.  
  460. return bodyclass;
  461. }
  462.  
  463. // -------------------------------------------------------------------------------------------
  464. // html 5 videos
  465. // -------------------------------------------------------------------------------------------
  466. $.fn.avia_html5_activation = function(options)
  467. {
  468. var defaults =
  469. {
  470. ratio: '16:9'
  471. };
  472.  
  473. var options = $.extend(defaults, options),
  474. isMobile = $.avia_utilities.isMobile;
  475.  
  476. // if(isMobile) return;
  477.  
  478. this.each(function()
  479. {
  480. var fv = $(this),
  481. id_to_apply = '#' + fv.attr('id'),
  482. posterImg = fv.attr('poster');
  483.  
  484.  
  485. fv.mediaelementplayer({
  486. // if the <video width> is not specified, this is the default
  487. defaultVideoWidth: 480,
  488. // if the <video height> is not specified, this is the default
  489. defaultVideoHeight: 270,
  490. // if set, overrides <video width>
  491. videoWidth: -1,
  492. // if set, overrides <video height>
  493. videoHeight: -1,
  494. // width of audio player
  495. audioWidth: 400,
  496. // height of audio player
  497. audioHeight: 30,
  498. // initial volume when the player starts
  499. startVolume: 0.8,
  500. // useful for <audio> player loops
  501. loop: false,
  502. // enables Flash and Silverlight to resize to content size
  503. enableAutosize: false,
  504. // the order of controls you want on the control bar (and other plugins below)
  505. features: ['playpause','progress','current','duration','tracks','volume'],
  506. // Hide controls when playing and mouse is not over the video
  507. alwaysShowControls: false,
  508. // force iPad's native controls
  509. iPadUseNativeControls: false,
  510. // force iPhone's native controls
  511. iPhoneUseNativeControls: false,
  512. // force Android's native controls
  513. AndroidUseNativeControls: false,
  514. // forces the hour marker (##:00:00)
  515. alwaysShowHours: false,
  516. // show framecount in timecode (##:00:00:00)
  517. showTimecodeFrameCount: false,
  518. // used when showTimecodeFrameCount is set to true
  519. framesPerSecond: 25,
  520. // turns keyboard support on and off for this instance
  521. enableKeyboard: true,
  522. // when this player starts, it will pause other players
  523. pauseOtherPlayers: false,
  524. poster: posterImg,
  525. success: function (mediaElement, domObject) {
  526.  
  527. setTimeout(function()
  528. {
  529. if (mediaElement.pluginType == 'flash')
  530. {
  531. mediaElement.addEventListener('canplay', function() { fv.trigger('av-mediajs-loaded'); }, false);
  532. }
  533. else
  534. {
  535. fv.trigger('av-mediajs-loaded').addClass('av-mediajs-loaded');
  536. }
  537.  
  538. mediaElement.addEventListener('ended', function() { fv.trigger('av-mediajs-ended'); }, false);
  539.  
  540. },10);
  541.  
  542. },
  543. // fires when a problem is detected
  544. error: function () {
  545.  
  546. },
  547.  
  548. // array of keyboard commands
  549. keyActions: []
  550. });
  551.  
  552. });
  553. }
  554.  
  555.  
  556.  
  557. // -------------------------------------------------------------------------------------------
  558. // hover effect for images
  559. // -------------------------------------------------------------------------------------------
  560. function avia_hover_effect(container)
  561. {
  562. //hover overlay for mobile device doesnt really make sense. in addition it often slows down the click event
  563. if($.avia_utilities.isMobile) return;
  564.  
  565. var overlay = "", cssTrans = $.avia_utilities.supports('transition');
  566.  
  567. if(container == 'body')
  568. {
  569. var elements = $('#main a img').parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a, .ls-wp-container a, .noHover, .noHover a, .av-logo-container .logo a').add('#main .avia-hover-fx');
  570. }
  571. else
  572. {
  573. var elements = $('a img', container).parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a, .ls-wp-container a, .noHover, .noHover a, .av-logo-container .logo a').add('.avia-hover-fx', container);
  574. }
  575.  
  576. elements.each(function(e)
  577. {
  578. var link = $(this),
  579. current = link.find('img:first');
  580.  
  581. if(current.hasClass('alignleft')) link.addClass('alignleft').css({float:'left', margin:0, padding:0});
  582. if(current.hasClass('alignright')) link.addClass('alignright').css({float:'right', margin:0, padding:0});
  583. if(current.hasClass('aligncenter')) link.addClass('aligncenter').css({float:'none','text-align':'center', margin:0, padding:0});
  584.  
  585. if(current.hasClass('alignnone'))
  586. {
  587. link.addClass('alignnone').css({margin:0, padding:0});;
  588. if(!link.css('display') || link.css('display') == 'inline') { link.css({display:'inline-block'}); }
  589. }
  590.  
  591. if(!link.css('position') || link.css('position') == 'static') { link.css({position:'relative', overflow:'hidden'}); }
  592.  
  593. var url = link.attr('href'),
  594. span_class = "overlay-type-video",
  595. opa = link.data('opacity') || 0.7,
  596. overlay_offset = 5,
  597. overlay = link.find('.image-overlay');
  598.  
  599. if(url)
  600. {
  601. if( url.match(/(jpg|gif|jpeg|png|tif)/) ) span_class = "overlay-type-image";
  602. if(!url.match(/(jpg|gif|jpeg|png|\.tif|\.mov|\.swf|vimeo\.com|youtube\.com)/) ) span_class = "overlay-type-extern";
  603. }
  604.  
  605. if(!overlay.length)
  606. {
  607. overlay = $("<span class='image-overlay "+span_class+"'><span class='image-overlay-inside'></span></span>").appendTo(link);
  608. }
  609.  
  610. link.on('mouseenter', function(e)
  611. {
  612. var current = link.find('img:first'),
  613. _self = current.get(0),
  614. outerH = current.outerHeight(),
  615. outerW = current.outerWidth(),
  616. pos = current.position(),
  617. linkCss = link.css('display'),
  618. overlay = link.find('.image-overlay');
  619.  
  620. if(outerH > 100)
  621. {
  622.  
  623. if(!overlay.length)
  624. {
  625. overlay = $("<span class='image-overlay "+span_class+"'><span class='image-overlay-inside'></span></span>").appendTo(link);
  626.  
  627. }
  628. //can be wrapped into if !overlay.length statement if chrome fixes fade in problem
  629. if(link.height() == 0) { link.addClass(_self.className); _self.className = ""; }
  630. if(!linkCss || linkCss == 'inline') { link.css({display:'block'}); }
  631. //end wrap
  632.  
  633. overlay.css({left:(pos.left - overlay_offset) + parseInt(current.css("margin-left"),10), top:pos.top + parseInt(current.css("margin-top"),10)})
  634. .css({overflow:'hidden',display:'block','height':outerH,'width':(outerW + (2*overlay_offset))});
  635.  
  636. if(cssTrans === false ) overlay.stop().animate({opacity:opa}, 400);
  637. }
  638. else
  639. {
  640. overlay.css({display:"none"});
  641. }
  642.  
  643. }).on('mouseleave', elements, function(){
  644.  
  645. if(overlay.length)
  646. {
  647. if(cssTrans === false ) overlay.stop().animate({opacity:0}, 400);
  648. }
  649. });
  650. });
  651. }
  652.  
  653.  
  654.  
  655.  
  656.  
  657.  
  658.  
  659.  
  660. // -------------------------------------------------------------------------------------------
  661. // Smooth scrooling when clicking on anchor links
  662. // todo: maybe use https://github.com/ryanburnette/scrollToBySpeed/blob/master/src/scrolltobyspeed.jquery.js in the future
  663. // -------------------------------------------------------------------------------------------
  664.  
  665. (function($)
  666. {
  667. $.fn.avia_smoothscroll = function(apply_to_container)
  668. {
  669. if(!this.length) return;
  670.  
  671. var the_win = $(window),
  672. $header = $('#header'),
  673. $main = $('.html_header_top.html_header_sticky #main').not('.page-template-template-blank-php #main'),
  674. $meta = $('.html_header_top.html_header_unstick_top_disabled #header_meta'),
  675. $alt = $('.html_header_top:not(.html_top_nav_header) #header_main_alternate'),
  676. menu_above_logo = $('.html_header_top.html_top_nav_header'),
  677. shrink = $('.html_header_top.html_header_shrinking').length,
  678. frame = $('.av-frame-top'),
  679. fixedMainPadding = 0,
  680. isMobile = $.avia_utilities.isMobile,
  681. sticky_sub = $('.sticky_placeholder:first'),
  682. calc_main_padding= function()
  683. {
  684. if($header.css('position') == "fixed")
  685. {
  686. var tempPadding = parseInt($main.data('scroll-offset'),10) || 0,
  687. non_shrinking = parseInt($meta.outerHeight(),10) || 0,
  688. non_shrinking2 = parseInt($alt.outerHeight(),10) || 0;
  689.  
  690. if(tempPadding > 0 && shrink)
  691. {
  692. tempPadding = (tempPadding / 2 ) + non_shrinking + non_shrinking2;
  693. }
  694. else
  695. {
  696. tempPadding = tempPadding + non_shrinking + non_shrinking2;
  697. }
  698.  
  699. tempPadding += parseInt($('html').css('margin-top'),10);
  700. fixedMainPadding = tempPadding;
  701. }
  702. else
  703. {
  704. fixedMainPadding = parseInt($('html').css('margin-top'),10);
  705. }
  706.  
  707. if(frame.length){
  708. fixedMainPadding += frame.height();
  709. }
  710.  
  711. if(menu_above_logo.length)
  712. {
  713. //if menu is above logo and we got a sticky height header
  714. fixedMainPadding = $('.html_header_sticky #header_main_alternate').height() + parseInt($('html').css('margin-top'),10);
  715. }
  716.  
  717. if(isMobile)
  718. {
  719. fixedMainPadding = 0;
  720. }
  721.  
  722. };
  723.  
  724. if(isMobile) shrink = false;
  725.  
  726. calc_main_padding();
  727. the_win.on("debouncedresize av-height-change", calc_main_padding);
  728.  
  729. var hash = window.location.hash.replace(/\//g, "");
  730.  
  731. //if a scroll event occurs at pageload and an anchor is set and a coresponding element exists apply the offset to the event
  732. if (fixedMainPadding > 0 && hash && apply_to_container == 'body' && hash.charAt(1) != "!" && hash.indexOf("=") === -1)
  733. {
  734. var scroll_to_el = $(hash), modifier = 0;
  735.  
  736. if(scroll_to_el.length)
  737. {
  738. the_win.on('scroll.avia_first_scroll', function()
  739. {
  740. setTimeout(function(){ //small delay so other scripts can perform necessary resizing
  741. if(sticky_sub.length && scroll_to_el.offset().top > sticky_sub.offset().top) { modifier = sticky_sub.outerHeight() - 3; }
  742. the_win.off('scroll.avia_first_scroll').scrollTop( scroll_to_el.offset().top - fixedMainPadding - modifier );
  743.  
  744. },10);
  745. });
  746. }
  747. }
  748.  
  749. return this.each(function()
  750. {
  751. $(this).click(function(e) {
  752.  
  753. var newHash = this.hash.replace(/\//g, ""),
  754. clicked = $(this),
  755. data = clicked.data();
  756.  
  757. if(newHash != '' && newHash != '#' && newHash != '#prev' && newHash != '#next' && !clicked.is('.comment-reply-link, #cancel-comment-reply-link, .no-scroll'))
  758. {
  759. var container = "", originHash = "";
  760.  
  761. if("#next-section" == newHash)
  762. {
  763. originHash = newHash;
  764. container = clicked.parents('.container_wrap:eq(0)').nextAll('.container_wrap:eq(0)');
  765. newHash = '#' + container.attr('id') ;
  766. }
  767. else
  768. {
  769. container = $(this.hash.replace(/\//g, ""));
  770. }
  771.  
  772.  
  773.  
  774. if(container.length)
  775. {
  776. var cur_offset = the_win.scrollTop(),
  777. container_offset = container.offset().top,
  778. target = container_offset - fixedMainPadding,
  779. hash = window.location.hash,
  780. hash = hash.replace(/\//g, ""),
  781. oldLocation=window.location.href.replace(hash, ''),
  782. newLocation=this,
  783. duration= data.duration || 1200,
  784. easing= data.easing || 'easeInOutQuint';
  785.  
  786. if(sticky_sub.length && container_offset > sticky_sub.offset().top) { target -= sticky_sub.outerHeight() - 3;}
  787.  
  788. // make sure it's the same location
  789. if(oldLocation+newHash==newLocation || originHash)
  790. {
  791. if(cur_offset != target) // if current pos and target are the same dont scroll
  792. {
  793. if(!(cur_offset == 0 && target <= 0 )) // if we are at the top dont try to scroll to top or above
  794. {
  795. the_win.trigger('avia_smooth_scroll_start');
  796.  
  797. // animate to target and set the hash to the window.location after the animation
  798. $('html:not(:animated),body:not(:animated)').animate({ scrollTop: target }, duration, easing, function() {
  799.  
  800. // add new hash to the browser location
  801. //window.location.href=newLocation;
  802. if(window.history.replaceState)
  803. window.history.replaceState("", "", newHash);
  804. });
  805. }
  806. }
  807. // cancel default click action
  808. e.preventDefault();
  809. }
  810. }
  811. }
  812. });
  813. });
  814. };
  815. })(jQuery);
  816.  
  817.  
  818. // -------------------------------------------------------------------------------------------
  819. // iframe fix for firefox and ie so they get proper z index
  820. // -------------------------------------------------------------------------------------------
  821. function avia_iframe_fix(container)
  822. {
  823. var iframe = jQuery('iframe[src*="youtube.com"]:not(.av_youtube_frame)', container),
  824. youtubeEmbed = jQuery('iframe[src*="youtube.com"]:not(.av_youtube_frame) object, iframe[src*="youtube.com"]:not(.av_youtube_frame) embed', container).attr('wmode','opaque');
  825.  
  826. iframe.each(function()
  827. {
  828. var current = jQuery(this),
  829. src = current.attr('src');
  830.  
  831. if(src)
  832. {
  833. if(src.indexOf('?') !== -1)
  834. {
  835. src += "&wmode=opaque";
  836. }
  837. else
  838. {
  839. src += "?wmode=opaque";
  840. }
  841.  
  842. current.attr('src', src);
  843. }
  844. });
  845. }
  846.  
  847. // -------------------------------------------------------------------------------------------
  848. // small js fixes for pixel perfection :)
  849. // -------------------------------------------------------------------------------------------
  850. function avia_small_fixes(container)
  851. {
  852. if(!container) container = document;
  853.  
  854. //make sure that iframes do resize correctly. uses css padding bottom iframe trick
  855. var win = jQuery(window),
  856. iframes = jQuery('.avia-iframe-wrap iframe:not(.avia-slideshow iframe):not( iframe.no_resize):not(.avia-video iframe)', container),
  857. adjust_iframes = function()
  858. {
  859. iframes.each(function(){
  860.  
  861. var iframe = jQuery(this), parent = iframe.parent(), proportions = 56.25;
  862.  
  863. if(this.width && this.height)
  864. {
  865. proportions = (100/ this.width) * this.height;
  866. parent.css({"padding-bottom":proportions+"%"});
  867. }
  868. });
  869. };
  870.  
  871. adjust_iframes();
  872.  
  873. }
  874.  
  875. // -------------------------------------------------------------------------------------------
  876. // Ligthbox activation
  877. // -------------------------------------------------------------------------------------------
  878.  
  879. (function($)
  880. {
  881. $.fn.avia_activate_lightbox = function(variables)
  882. {
  883.  
  884. var defaults = {
  885. groups : ['.avia-slideshow', '.avia-gallery', '.av-instagram-pics', '.portfolio-preview-image', '.portfolio-preview-content', '.isotope', '.post-entry', '.sidebar', '#main', '.main_menu'],
  886. autolinkElements: 'a.lightbox, a[rel^="prettyPhoto"], a[rel^="lightbox"], a[href$=jpg], a[href$=png], a[href$=gif], a[href$=jpeg], a[href*=".jpg?"], a[href*=".png?"], a[href*=".gif?"], a[href*=".jpeg?"], a[href$=".mov"] , a[href$=".swf"] , a:regex(href, .vimeo\.com/[0-9]) , a[href*="youtube.com/watch"] , a[href*="screenr.com"], a[href*="iframe=true"]',
  887. videoElements : 'a[href$=".mov"] , a[href$=".swf"] , a:regex(href, .vimeo\.com/[0-9]) , a[href*="youtube.com/watch"] , a[href*="screenr.com"], a[href*="iframe=true"]',
  888. exclude : '.noLightbox, .noLightbox a, .fakeLightbox, .lightbox-added, a[href*="dropbox.com"]',
  889. },
  890.  
  891. options = $.extend({}, defaults, variables),
  892.  
  893. av_popup = {
  894. type: 'image',
  895. mainClass: 'avia-popup mfp-zoom-in',
  896. tLoading: '',
  897. tClose: '',
  898. removalDelay: 300, //delay removal by X to allow out-animation
  899. closeBtnInside: true,
  900. closeOnContentClick:false,
  901. midClick: true,
  902. fixedContentPos: false, // allows scrolling when lightbox is open but also removes any jumping because of scrollbar removal
  903.  
  904. image: {
  905. titleSrc: function(item){
  906. var title = item.el.attr('title');
  907. if(!title) title = item.el.find('img').attr('title');
  908. if(!title) title = item.el.parent().next('.wp-caption-text').html();
  909. if(typeof title == "undefined") return "";
  910. return title;
  911. }
  912. },
  913.  
  914. gallery: {
  915. // delegate: options.autolinkElements,
  916. tPrev: '',
  917. tNext: '',
  918. tCounter: '%curr% / %total%',
  919. enabled: true,
  920. preload: [1,1] // Will preload 1 - before current, and 1 after the current image
  921. },
  922.  
  923. callbacks:
  924. {
  925. beforeOpen: function()
  926. {
  927. //add custom css class for different styling
  928. if( this.st.el && this.st.el.data('fixed-content') )
  929. {
  930. this.fixedContentPos = true;
  931. }
  932. },
  933.  
  934.  
  935. open: function()
  936. {
  937. //overwrite default prev + next function. Add timeout for crossfade animation
  938. $.magnificPopup.instance.next = function() {
  939. var self = this;
  940. self.wrap.removeClass('mfp-image-loaded');
  941. setTimeout(function() { $.magnificPopup.proto.next.call(self); }, 120);
  942. }
  943. $.magnificPopup.instance.prev = function() {
  944. var self = this;
  945. self.wrap.removeClass('mfp-image-loaded');
  946. setTimeout(function() { $.magnificPopup.proto.prev.call(self); }, 120);
  947. }
  948.  
  949. //add custom css class for different styling
  950. if( this.st.el && this.st.el.data('av-extra-class') )
  951. {
  952. this.wrap.addClass( this.currItem.el.data('av-extra-class') );
  953. }
  954.  
  955.  
  956. },
  957. imageLoadComplete: function()
  958. {
  959. var self = this;
  960. setTimeout(function() { self.wrap.addClass('mfp-image-loaded'); }, 16);
  961. },
  962. change: function() {
  963.  
  964. if( this.currItem.el )
  965. {
  966. var current = this.currItem.el;
  967.  
  968. this.content.find( '.av-extra-modal-content, .av-extra-modal-markup' ).remove();
  969.  
  970. if( current.data('av-extra-content') )
  971. {
  972. var extra = current.data('av-extra-content');
  973. this.content.append( "<div class='av-extra-modal-content'>" + extra + "</div>" );
  974. }
  975.  
  976. if( current.data('av-extra-markup') )
  977. {
  978. var markup = current.data('av-extra-markup');
  979. this.wrap.append( "<div class='av-extra-modal-markup'>" + markup + "</div>" );
  980. }
  981. }
  982. },
  983. }
  984. },
  985.  
  986. active = !$('html').is('.av-custom-lightbox');
  987.  
  988. if(!active) return this;
  989.  
  990. return this.each(function()
  991. {
  992. var container = $(this),
  993. videos = $(options.videoElements, this).not(options.exclude).addClass('mfp-iframe'), /*necessary class for the correct lightbox markup*/
  994. ajaxed = !container.is('body') && !container.is('.ajax_slide');
  995.  
  996. for (var i = 0; i < options.groups.length; i++)
  997. {
  998. container.find(options.groups[i]).each(function()
  999. {
  1000. var links = $(options.autolinkElements, this);
  1001.  
  1002. if(ajaxed) links.removeClass('lightbox-added');
  1003. links.not(options.exclude).addClass('lightbox-added').magnificPopup(av_popup);
  1004. });
  1005. }
  1006.  
  1007. });
  1008. }
  1009. })(jQuery);
  1010.  
  1011.  
  1012.  
  1013.  
  1014.  
  1015.  
  1016.  
  1017.  
  1018. // -------------------------------------------------------------------------------------------
  1019. // Avia Menu
  1020. // -------------------------------------------------------------------------------------------
  1021.  
  1022. (function($)
  1023. {
  1024. $.fn.aviaMegamenu = function(variables)
  1025. {
  1026. var defaults =
  1027. {
  1028. modify_position:true,
  1029. delay:300
  1030. };
  1031.  
  1032. var options = $.extend(defaults, variables),
  1033. win = $(window);
  1034.  
  1035.  
  1036.  
  1037. return this.each(function()
  1038. {
  1039. var the_html = $('html:first'),
  1040. main = $('#main .container:first'),
  1041. left_menu = the_html.filter('.html_menu_left, .html_logo_center').length,
  1042. isMobile = $.avia_utilities.isMobile,
  1043. menu = $(this),
  1044. menuItems = menu.find(">li:not(.ignore_menu)"),
  1045. megaItems = menuItems.find(">div").parent().css({overflow:'hidden'}),
  1046. menuActive = menu.find('>.current-menu-item>a, >.current_page_item>a'),
  1047. dropdownItems = menuItems.find(">ul").parent(),
  1048. parentContainer = menu.parent(),
  1049. mainMenuParent = menu.parents('.main_menu').eq(0),
  1050. parentContainerWidth = parentContainer.width(),
  1051. delayCheck = {},
  1052. mega_open = [];
  1053.  
  1054.  
  1055. if(!menuActive.length){ menu.find('.current-menu-ancestor:eq(0) a:eq(0), .current_page_ancestor:eq(0) a:eq(0)').parent().addClass('active-parent-item')}
  1056. if(!the_html.is('.html_header_top')) { options.modify_position = false; }
  1057.  
  1058.  
  1059. menuItems.on('click' ,'a', function()
  1060. {
  1061. if(this.href == window.location.href + "#" || this.href == window.location.href + "/#")
  1062. return false;
  1063. });
  1064.  
  1065. menuItems.each(function()
  1066. {
  1067. var item = $(this),
  1068. pos = item.position(),
  1069. megaDiv = item.find("div:first").css({opacity:0, display:"none"}),
  1070. normalDropdown = "";
  1071.  
  1072. //check if we got a mega menu
  1073. if(!megaDiv.length)
  1074. {
  1075. normalDropdown = item.find(">ul").css({display:"none"});
  1076. }
  1077.  
  1078. //if we got a mega menu or dropdown menu add the arrow beside the menu item
  1079. if(megaDiv.length || normalDropdown.length)
  1080. {
  1081. var link = item.addClass('dropdown_ul_available').find('>a');
  1082. link.append('<span class="dropdown_available"></span>');
  1083.  
  1084. //is a mega menu main item doesnt have a link to click use the default cursor
  1085. if(typeof link.attr('href') != 'string' || link.attr('href') == "#"){ link.css('cursor','default').click(function(){return false;}); }
  1086. }
  1087.  
  1088.  
  1089. //correct position of mega menus
  1090. if(options.modify_position && megaDiv.length)
  1091. {
  1092. item.on('mouseenter', function(){ calc_offset(item, pos, megaDiv, parentContainerWidth) });
  1093. }
  1094.  
  1095.  
  1096.  
  1097. });
  1098.  
  1099.  
  1100. function calc_offset(item, pos, megaDiv, parentContainerWidth)
  1101. {
  1102. pos = item.position();
  1103.  
  1104. if(!left_menu)
  1105. {
  1106. if(pos.left + megaDiv.width() < parentContainerWidth)
  1107. {
  1108. megaDiv.css({right: -megaDiv.outerWidth() + item.outerWidth() });
  1109. //item.css({position:'static'});
  1110. }
  1111. else if(pos.left + megaDiv.width() > parentContainerWidth)
  1112. {
  1113. megaDiv.css({right: -mainMenuParent.outerWidth() + (pos.left + item.outerWidth() ) });
  1114. }
  1115. }
  1116. else
  1117. {
  1118. if(megaDiv.width() > pos.left + item.outerWidth())
  1119. {
  1120. megaDiv.css({left: (pos.left* -1)});
  1121. }
  1122. else if(pos.left + megaDiv.width() > parentContainerWidth)
  1123. {
  1124. megaDiv.css({left: (megaDiv.width() - pos.left) * -1 });
  1125. }
  1126. }
  1127. }
  1128.  
  1129. function megaDivShow(i)
  1130. {
  1131. if(delayCheck[i] == true)
  1132. {
  1133. var item = megaItems.filter(':eq('+i+')').css({overflow:'visible'}).find("div:first"),
  1134. link = megaItems.filter(':eq('+i+')').find("a:first");
  1135. mega_open["check"+i] = true;
  1136.  
  1137. item.stop().css('display','block').animate({opacity:1},300);
  1138.  
  1139. if(item.length)
  1140. {
  1141. link.addClass('open-mega-a');
  1142. }
  1143. }
  1144. }
  1145.  
  1146. function megaDivHide (i)
  1147. {
  1148. if(delayCheck[i] == false)
  1149. {
  1150. megaItems.filter(':eq('+i+')').find(">a").removeClass('open-mega-a');
  1151.  
  1152. var listItem = megaItems.filter(':eq('+i+')'),
  1153. item = listItem.find("div:first");
  1154.  
  1155.  
  1156. item.stop().css('display','block').animate({opacity:0},300, function()
  1157. {
  1158. $(this).css('display','none');
  1159. listItem.css({overflow:'hidden'});
  1160. mega_open["check"+i] = false;
  1161. });
  1162. }
  1163. }
  1164.  
  1165. if(isMobile)
  1166. {
  1167. megaItems.each(function(i){
  1168.  
  1169. $(this).bind('click', function()
  1170. {
  1171. if(mega_open["check"+i] != true) return false;
  1172. });
  1173. });
  1174. }
  1175.  
  1176.  
  1177. //bind event for mega menu
  1178. megaItems.each(function(i){
  1179.  
  1180. $(this).hover(
  1181.  
  1182. function()
  1183. {
  1184. delayCheck[i] = true;
  1185. setTimeout(function(){megaDivShow(i); },options.delay);
  1186. },
  1187.  
  1188. function()
  1189. {
  1190. delayCheck[i] = false;
  1191. setTimeout(function(){megaDivHide(i); },options.delay);
  1192. }
  1193. );
  1194. });
  1195.  
  1196.  
  1197. // bind events for dropdown menu
  1198. dropdownItems.find('li').addBack().each(function()
  1199. {
  1200. var currentItem = $(this),
  1201. sublist = currentItem.find('ul:first'),
  1202. showList = false;
  1203.  
  1204. if(sublist.length)
  1205. {
  1206. sublist.css({display:'block', opacity:0, visibility:'hidden'});
  1207. var currentLink = currentItem.find('>a');
  1208.  
  1209. currentLink.bind('mouseenter', function()
  1210. {
  1211. sublist.stop().css({visibility:'visible'}).animate({opacity:1});
  1212. });
  1213.  
  1214. currentItem.bind('mouseleave', function()
  1215. {
  1216. sublist.stop().animate({opacity:0}, function()
  1217. {
  1218. sublist.css({visibility:'hidden'});
  1219. });
  1220. });
  1221.  
  1222. }
  1223.  
  1224. });
  1225.  
  1226. });
  1227. };
  1228. })(jQuery);
  1229.  
  1230.  
  1231.  
  1232.  
  1233. // -------------------------------------------------------------------------------------------
  1234. //Portfolio sorting
  1235. // -------------------------------------------------------------------------------------------
  1236.  
  1237. $.fn.avia_iso_sort = function(options)
  1238. {
  1239. return this.each(function()
  1240. {
  1241. var the_body = $('body'),
  1242. container = $(this),
  1243. portfolio_id = container.data('portfolio-id'),
  1244. parentContainer = container.parents('.entry-content-wrapper, .avia-fullwidth-portfolio'),
  1245. filter = parentContainer.find('.sort_width_container[data-portfolio-id="' + portfolio_id + '"]').find('#js_sort_items').css({visibility:"visible", opacity:0}),
  1246. links = filter.find('a'),
  1247. imgParent = container.find('.grid-image'),
  1248. isoActive = false,
  1249. items = $('.post-entry', container);
  1250.  
  1251. function applyIso()
  1252. {
  1253. container.addClass('isotope_activated').isotope({
  1254. layoutMode : 'fitRows', itemSelector : '.flex_column'
  1255. });
  1256.  
  1257. container.isotope( 'on', 'layoutComplete', function()
  1258. {
  1259. container.css({overflow:'visible'});
  1260. the_body.trigger('av_resize_finished');
  1261. });
  1262.  
  1263. isoActive = true;
  1264. setTimeout(function(){ parentContainer.addClass('avia_sortable_active'); }, 0);
  1265. };
  1266.  
  1267. links.bind('click',function()
  1268. {
  1269. var current = $(this),
  1270. selector = current.data('filter'),
  1271. linktext = current.html(),
  1272. activeCat = parentContainer.find('.av-current-sort-title');
  1273.  
  1274. if(activeCat.length) activeCat.html(linktext);
  1275.  
  1276. links.removeClass('active_sort');
  1277. current.addClass('active_sort');
  1278. container.attr('id', 'grid_id_'+selector);
  1279.  
  1280. parentContainer.find('.open_container .ajax_controlls .avia_close').trigger('click');
  1281. //container.css({overflow:'hidden'})
  1282. container.isotope({ layoutMode : 'fitRows', itemSelector : '.flex_column' , filter: '.'+selector});
  1283.  
  1284. return false;
  1285. });
  1286.  
  1287. // update columnWidth on window resize
  1288. $(window).on( 'debouncedresize', function()
  1289. {
  1290. applyIso();
  1291. });
  1292.  
  1293. $.avia_utilities.preload({container: container, single_callback: function()
  1294. {
  1295. filter.animate({opacity:1}, 400); applyIso();
  1296.  
  1297. //call a second time to for the initial resizing
  1298. setTimeout(function(){ applyIso(); });
  1299.  
  1300. imgParent.css({height:'auto'}).each(function(i)
  1301. {
  1302. var currentLink = $(this);
  1303.  
  1304. setTimeout(function()
  1305. {
  1306. currentLink.animate({opacity:1},1500);
  1307. }, (100 * i));
  1308. });
  1309. }
  1310. });
  1311.  
  1312. });
  1313. };
  1314.  
  1315.  
  1316.  
  1317.  
  1318. function avia_sticky_submenu()
  1319. {
  1320. var win = $(window),
  1321. html = $('html:first'),
  1322. header = $('.html_header_top.html_header_sticky #header'),
  1323. html_margin = parseInt( $('html:first').css('margin-top'), 10),
  1324. setWitdth = $('.html_header_sidebar #main, .boxed #main'),
  1325. menus = $('.av-submenu-container'),
  1326. bordermod = html.is('.html_minimal_header') ? 0 : 1,
  1327. fixed_frame = $('.av-frame-top').height(),
  1328. calc_margin = function()
  1329. {
  1330. html_margin = parseInt( html.css('margin-top'), 10);
  1331. if(!$('.mobile_menu_toggle:visible').length)
  1332. {
  1333. $('.av-open-submenu').removeClass('av-open-submenu');
  1334. }
  1335.  
  1336. menus.filter('.av-sticky-submenu').each(function()
  1337. {
  1338. $(this).next('.sticky_placeholder').height($(this).height());
  1339. });
  1340.  
  1341. },
  1342. calc_values = function()
  1343. {
  1344. var content_width = setWitdth.width();
  1345. html_margin = parseInt( html.css('margin-top'), 10);
  1346. menus.width(content_width);
  1347. },
  1348. check = function(placeholder, no_timeout)
  1349. {
  1350. var menu_pos = this.offset().top,
  1351. top_pos = placeholder.offset().top,
  1352. scrolled = win.scrollTop(),
  1353. modifier = html_margin, fixed = false;
  1354.  
  1355. if(header.length)
  1356. {
  1357. modifier += header.outerHeight() + parseInt( header.css('margin-top'), 10);
  1358. }
  1359.  
  1360. if(fixed_frame)
  1361. {
  1362. modifier += fixed_frame;
  1363. }
  1364.  
  1365. if(scrolled + modifier > top_pos)
  1366. {
  1367. if(!fixed)
  1368. {
  1369. this.css({top: modifier - bordermod, position: 'fixed'}); fixed = true
  1370. }
  1371. }
  1372. else
  1373. {
  1374. this.css({top: 'auto', position: 'absolute'}); fixed = false
  1375. }
  1376.  
  1377. },
  1378. toggle = function(e)
  1379. {
  1380. e.preventDefault();
  1381.  
  1382. var clicked = $(this),
  1383. menu = clicked.siblings('.av-subnav-menu');
  1384.  
  1385. if(menu.hasClass('av-open-submenu'))
  1386. {
  1387. menu.removeClass('av-open-submenu');
  1388. }
  1389. else
  1390. {
  1391. menu.addClass('av-open-submenu');
  1392. }
  1393. };
  1394.  
  1395. win.on("debouncedresize av-height-change", calc_margin ); calc_margin();
  1396.  
  1397. if(setWitdth.length)
  1398. {
  1399. win.on("debouncedresize av-height-change", calc_values );
  1400. calc_values();
  1401. }
  1402.  
  1403.  
  1404. menus.each(function()
  1405. {
  1406. var menu = $(this), sticky = menu.filter('.av-sticky-submenu'), placeholder = menu.next('.sticky_placeholder'), mobile_button = menu.find('.mobile_menu_toggle');
  1407.  
  1408.  
  1409. if(sticky.length) win.on( 'scroll', function(){ window.requestAnimationFrame( $.proxy( check, sticky, placeholder) )} );
  1410.  
  1411. if(mobile_button.length)
  1412. {
  1413. mobile_button.on( 'click', toggle );
  1414. }
  1415. });
  1416.  
  1417.  
  1418. html.on('click', '.av-submenu-hidden .av-open-submenu li a', function()
  1419. {
  1420. var current = $(this);
  1421.  
  1422. var list_item = current.siblings('ul, .avia_mega_div');
  1423. if(list_item.length)
  1424. {
  1425. if(list_item.hasClass('av-visible-sublist'))
  1426. {
  1427. list_item.removeClass('av-visible-sublist');
  1428. }
  1429. else
  1430. {
  1431. list_item.addClass('av-visible-sublist');
  1432. }
  1433. return false;
  1434. }
  1435. });
  1436.  
  1437. $('.avia_mobile').on('click', '.av-menu-mobile-disabled li a', function()
  1438. {
  1439. var current = $(this);
  1440. var list_item = current.siblings('ul');
  1441. if(list_item.length)
  1442. {
  1443. if(list_item.hasClass('av-visible-mobile-sublist'))
  1444. {
  1445.  
  1446. }
  1447. else
  1448. {
  1449. $('.av-visible-mobile-sublist').removeClass('av-visible-mobile-sublist');
  1450. list_item.addClass('av-visible-mobile-sublist');
  1451. return false;
  1452. }
  1453.  
  1454. }
  1455. });
  1456.  
  1457.  
  1458.  
  1459. }
  1460.  
  1461.  
  1462.  
  1463. function avia_sidebar_menu()
  1464. {
  1465. var win = $(window),
  1466. main = $('#main'),
  1467. sb_header = $('.html_header_sidebar #header_main'),
  1468. sidebar = $('.html_header_sidebar #header.av_conditional_sticky');
  1469.  
  1470. if(!sb_header.length) return;
  1471. // main.css({"min-height":sb_header.outerHeight()});
  1472.  
  1473.  
  1474.  
  1475. if(!sidebar.length) return;
  1476.  
  1477. var innerSidebar = $('#header_main'),
  1478. wrap = $('#wrap_all'),
  1479. fixed_frame = $('.av-frame-top').height() * 2,
  1480. subtract = parseInt($('html').css('margin-top'), 10),
  1481. calc_values = function()
  1482. {
  1483. if(innerSidebar.outerHeight() + fixed_frame < win.height())
  1484. {
  1485. sidebar.addClass('av_always_sticky');
  1486. }
  1487. else
  1488. {
  1489. sidebar.removeClass('av_always_sticky');
  1490. }
  1491.  
  1492. wrap.css({'min-height': win.height() - subtract});
  1493. };
  1494.  
  1495. calc_values();
  1496. win.on("debouncedresize av-height-change", calc_values);
  1497. }
  1498.  
  1499. function av_change_class($element, change_method, class_name)
  1500. {
  1501. if($element[0].classList)
  1502. {
  1503. if(change_method == "add")
  1504. {
  1505. $element[0].classList.add(class_name);
  1506. }
  1507. else
  1508. {
  1509. $element[0].classList.remove(class_name);
  1510. }
  1511. }
  1512. else
  1513. {
  1514. if(change_method == "add")
  1515. {
  1516. $element.addClass(class_name);
  1517. }
  1518. else
  1519. {
  1520. $element.removeClass(class_name);
  1521. }
  1522. }
  1523. }
  1524.  
  1525.  
  1526.  
  1527. //check if the browser supports element rotation
  1528. function avia_header_size()
  1529. {
  1530. var win = $(window),
  1531. header = $('.html_header_top.html_header_sticky #header'),
  1532. unsticktop = $('.av_header_unstick_top');
  1533.  
  1534. if(!header.length && !unsticktop.length) return;
  1535.  
  1536. var logo = $('#header_main .container .logo img, #header_main .container .logo a'),
  1537. elements = $('#header_main .container:not(#header_main_alternate>.container), #header_main .main_menu ul:first-child > li > a:not(.avia_mega_div a, #header_main_alternate a), #header_main #menu-item-shop .cart_dropdown_link'),
  1538. el_height = $(elements).filter(':first').height(),
  1539. isMobile = $.avia_utilities.isMobile,
  1540. scroll_top = $('#scroll-top-link'),
  1541. transparent = header.is('.av_header_transparency'),
  1542. shrinking = header.is('.av_header_shrinking'),
  1543. topbar_height = header.find('#header_meta').outerHeight(),
  1544. set_height = function()
  1545. {
  1546. var st = win.scrollTop(), newH = 0, st_real = st;
  1547.  
  1548. if(unsticktop) st -= topbar_height;
  1549. if(st < 0) st = 0;
  1550.  
  1551. if(shrinking && !isMobile)
  1552. {
  1553. if(st < el_height/2)
  1554. {
  1555. newH = el_height - st;
  1556. if(st <= 0){
  1557. newH = el_height;
  1558. }
  1559.  
  1560. av_change_class(header, 'remove', 'header-scrolled');
  1561. //header.removeClass('header-scrolled');
  1562. }
  1563. else
  1564. {
  1565. newH = el_height/2;
  1566. //header.addClass('header-scrolled');
  1567. av_change_class(header, 'add', 'header-scrolled');
  1568. }
  1569.  
  1570. if(st - 30 < el_height)
  1571. {
  1572. av_change_class(header, 'remove', 'header-scrolled-full');
  1573. }
  1574. else
  1575. {
  1576. av_change_class(header, 'add', 'header-scrolled-full');
  1577. }
  1578.  
  1579.  
  1580. elements.css({'height': newH + 'px', 'lineHeight': newH + 'px'});
  1581. logo.css({'maxHeight': newH + 'px'});
  1582. }
  1583.  
  1584. if(unsticktop.length)
  1585. {
  1586. if( st <= 0)
  1587. {
  1588. if(st_real <= 0) st_real = 0;
  1589. unsticktop.css({"margin-top":"-"+st_real+"px"});
  1590. }
  1591. else
  1592. {
  1593. unsticktop.css({"margin-top":"-"+topbar_height+"px"});
  1594. }
  1595. }
  1596.  
  1597. if(transparent)
  1598. {
  1599. if(st > 50)
  1600. {
  1601. //header.removeClass('av_header_transparency');
  1602. av_change_class(header, 'remove', 'av_header_transparency');
  1603. }
  1604. else
  1605. {
  1606. //header.addClass('av_header_transparency');
  1607. av_change_class(header, 'add', 'av_header_transparency');
  1608. }
  1609. }
  1610.  
  1611.  
  1612. }
  1613.  
  1614. if($('body').is('.avia_deactivate_menu_resize')) shrinking = false;
  1615.  
  1616. if(!transparent && !shrinking && !unsticktop.length) return;
  1617.  
  1618. win.on( 'debouncedresize', function(){ el_height = $(elements).attr('style',"").filter(':first').height(); set_height(); } );
  1619. win.on( 'scroll', function(){ window.requestAnimationFrame( set_height )} );
  1620. set_height();
  1621. }
  1622.  
  1623.  
  1624. function avia_scroll_top_fade()
  1625. {
  1626. var win = $(window),
  1627. timeo = false,
  1628. scroll_top = $('#scroll-top-link'),
  1629. set_status = function()
  1630. {
  1631. var st = win.scrollTop();
  1632.  
  1633. if(st < 500)
  1634. {
  1635. scroll_top.removeClass('avia_pop_class');
  1636. }
  1637. else if(!scroll_top.is('.avia_pop_class'))
  1638. {
  1639. scroll_top.addClass('avia_pop_class');
  1640. }
  1641. };
  1642.  
  1643. win.on( 'scroll', function(){ window.requestAnimationFrame( set_status )} );
  1644. set_status();
  1645. }
  1646.  
  1647. function avia_hamburger_menu()
  1648. {
  1649. var header = $('#header'),
  1650. header_main = $('#main .av-logo-container'), //check if we got a top menu that is above the header
  1651. menu = $('#avia-menu'),
  1652. burger_wrap = $('.av-burger-menu-main a'),
  1653. htmlEL = $('html').eq(0),
  1654. overlay = $('<div class="av-burger-overlay"></div>'),
  1655. overlay_scroll = $('<div class="av-burger-overlay-scroll"></div>').appendTo(overlay),
  1656. inner_overlay = $('<div class="av-burger-overlay-inner"></div>').appendTo(overlay_scroll),
  1657. bgColor = $('<div class="av-burger-overlay-bg"></div>').appendTo(overlay),
  1658. animating = false,
  1659. first_level = {},
  1660. logo_container = $('.av-logo-container .inner-container'),
  1661. menu_in_logo_container = logo_container.find('.main_menu'),
  1662. cloneFirst = htmlEL.is('.html_av-submenu-display-click.html_av-submenu-clone'),
  1663. menu_generated = false,
  1664. set_list_container_height = function()
  1665. {
  1666. //necessary for ios since the height is usually not 100% but 100% - menu bar which can be requested by window.innerHeight
  1667. if($.avia_utilities.isMobile)
  1668. {
  1669. overlay_scroll.outerHeight(window.innerHeight);
  1670. }
  1671. },
  1672. create_list = function( items , append_to )
  1673. {
  1674. if(!items) return;
  1675.  
  1676. var list, link, current, subitems, megaitems, sub_current, sub_current_list, new_li, new_ul;
  1677.  
  1678. items.each(function()
  1679. {
  1680. current = $(this);
  1681. subitems = current.find(' > .sub-menu > li'); //find sublists
  1682. megaitems = current.find('.avia_mega_div > .sub-menu > li > .sub-menu');
  1683.  
  1684. // href = '#': we have a custom link that should not link to something - is also in use by megamenu for titles
  1685. var cur_menu = current.find('>a');
  1686. var clone_events = true;
  1687.  
  1688. if( cur_menu.get(0).hash == '#' || cur_menu.attr('href') == '#' )
  1689. {
  1690. // eventhandler conflict 'click' by megamenu (returns false) - ignore all handlers
  1691. if( subitems.length > 0 || megaitems.length > 0 )
  1692. {
  1693. clone_events = false;
  1694. }
  1695. }
  1696.  
  1697. link = cur_menu.clone(clone_events).attr('style','');
  1698.  
  1699. new_li = $('<li>').append( link );
  1700. append_to.append(new_li);
  1701.  
  1702. if(subitems.length)
  1703. {
  1704. new_ul = $('<ul class="sub-menu">').appendTo(new_li);
  1705.  
  1706. if(cloneFirst && ( link.get(0).hash != '#' && link.attr('href') != '#' ))
  1707. {
  1708. new_li.clone(true).prependTo(new_ul);
  1709. }
  1710.  
  1711. new_li.addClass('av-width-submenu').find('>a').append('<span class="av-submenu-indicator">');
  1712.  
  1713. create_list( subitems , new_ul);
  1714. }
  1715. else if(megaitems.length) //if we got no normal sublists try megamenu sublists
  1716. {
  1717.  
  1718. var new_ul = $('<ul class="sub-menu">').appendTo(new_li);
  1719.  
  1720. if(cloneFirst && ( link.get(0).hash != '#' && link.attr('href') != '#' ))
  1721. {
  1722. new_li.clone(true).prependTo(new_ul);
  1723. }
  1724.  
  1725. megaitems.each(function(iteration)
  1726. {
  1727. var mega_current = $(this),
  1728. mega_title = mega_current.prev('.mega_menu_title'),
  1729. mega_title_link = mega_title.find('a').attr('href') || "#",
  1730. current_megas = mega_current.find('>li'),
  1731. mega_title_set = false,
  1732. mega_link = new_li.find('>a');
  1733.  
  1734.  
  1735.  
  1736. if(iteration == 0) new_li.addClass('av-width-submenu').find('>a').append('<span class="av-submenu-indicator">');
  1737.  
  1738. //if we got a title split up submenu items into multiple columns
  1739. if(mega_title.length && mega_title.text() != "")
  1740. {
  1741. mega_title_set = true;
  1742.  
  1743. //if we are within the first iteration we got a new submenu, otherwise we start a new one
  1744. if(iteration > 0)
  1745. {
  1746. var check_li = new_li.parents('li').eq(0);
  1747.  
  1748. if(check_li.length) new_li = check_li;
  1749.  
  1750. new_ul = $('<ul class="sub-menu">').appendTo(new_li);
  1751. }
  1752.  
  1753.  
  1754. new_li = $('<li>').appendTo(new_ul);
  1755. new_ul = $('<ul class="sub-menu">').appendTo(new_li);
  1756.  
  1757. $('<a href="'+mega_title_link+'"><span class="avia-bullet"></span><span class="avia-menu-text">' +mega_title.text()+ '</span></a>').insertBefore(new_ul);
  1758. mega_link = new_li.find('>a');
  1759.  
  1760.  
  1761. if(cloneFirst && ( mega_link.length && mega_link.get(0).hash != '#' && mega_link.attr('href') != '#' ))
  1762. {
  1763. new_li.clone(true).addClass('av-cloned-title').prependTo(new_ul);
  1764. }
  1765.  
  1766. }
  1767.  
  1768. if(mega_title_set) new_li.addClass('av-width-submenu').find('>a').append('<span class="av-submenu-indicator">');
  1769. create_list( current_megas , new_ul);
  1770. });
  1771.  
  1772. }
  1773.  
  1774. });
  1775.  
  1776. return list;
  1777. };
  1778.  
  1779. var burger_ul, burger;
  1780.  
  1781. //prevent scrolling of outer window when scrolling inside
  1782. $('body').on( 'mousewheel DOMMouseScroll touchmove', '.av-burger-overlay-scroll', function (e) {
  1783.  
  1784. var height = this.offsetHeight,
  1785. scrollHeight = this.scrollHeight,
  1786. direction = e.originalEvent.wheelDelta;
  1787.  
  1788. if(scrollHeight != this.clientHeight)
  1789. {
  1790. if( (this.scrollTop >= (scrollHeight - height) && direction < 0) || (this.scrollTop <= 0 && direction > 0) ) {
  1791. e.preventDefault();
  1792. }
  1793. }
  1794. else
  1795. {
  1796. e.preventDefault();
  1797. }
  1798. });
  1799.  
  1800. //prevent scrolling for the rest of the screen
  1801. $(document).on( 'mousewheel DOMMouseScroll touchmove', '.av-burger-overlay-bg, .av-burger-overlay-active .av-burger-menu-main', function (e)
  1802. {
  1803. e.preventDefault();
  1804. });
  1805.  
  1806. //prevent scrolling on mobile devices
  1807. var touchPos = {};
  1808.  
  1809. $(document).on('touchstart', '.av-burger-overlay-scroll', function(e)
  1810. {
  1811. touchPos.Y = e.originalEvent.touches[0].clientY;
  1812. });
  1813.  
  1814. $(document).on('touchend', '.av-burger-overlay-scroll', function(e)
  1815. {
  1816. touchPos = {};
  1817. });
  1818.  
  1819. //prevent rubberband scrolling http://blog.christoffer.me/six-things-i-learnt-about-ios-safaris-rubber-band-scrolling/
  1820. $(document).on( 'touchmove', '.av-burger-overlay-scroll', function (e)
  1821. {
  1822. if(!touchPos.Y)
  1823. {
  1824. touchPos.Y = e.originalEvent.touches[0].clientY;
  1825. }
  1826.  
  1827. var differenceY = e.originalEvent.touches[0].clientY - touchPos.Y,
  1828. element = this,
  1829. top = element.scrollTop,
  1830. totalScroll = element.scrollHeight,
  1831. currentScroll = top + element.offsetHeight,
  1832. direction = differenceY > 0 ? "up" : "down";
  1833.  
  1834. $('body').get(0).scrollTop = touchPos.body;
  1835.  
  1836. if ( top <= 0 )
  1837. {
  1838. if(direction == "up") e.preventDefault();
  1839.  
  1840. } else if ( currentScroll >= totalScroll )
  1841. {
  1842. if(direction == "down") e.preventDefault();
  1843. }
  1844. });
  1845.  
  1846. $(window).on( 'debouncedresize', function (e)
  1847. {
  1848. // close burger menu when returning to desktop
  1849. if(burger && burger.length)
  1850. {
  1851. if( ! burger_wrap.is(':visible') )
  1852. {
  1853. burger.filter(".is-active").parents('a').eq(0).trigger('click');
  1854. }
  1855. }
  1856.  
  1857. set_list_container_height();
  1858. });
  1859.  
  1860. //close overlay on overlay click
  1861. $('.html_av-overlay-side').on( 'click', '.av-burger-overlay-bg', function (e)
  1862. {
  1863. e.preventDefault();
  1864. burger.parents('a').eq(0).trigger('click');
  1865. });
  1866.  
  1867. //close overlay when smooth scrollign begins
  1868. $(window).on('avia_smooth_scroll_start', function()
  1869. {
  1870. if(burger && burger.length)
  1871. {
  1872. burger.filter(".is-active").parents('a').eq(0).trigger('click');
  1873. }
  1874. });
  1875.  
  1876.  
  1877. //toogle hide/show for submenu items
  1878. $('.html_av-submenu-display-hover').on( 'mouseenter touchstart', '.av-width-submenu', function (e)
  1879. {
  1880. $(this).children("ul.sub-menu").slideDown('fast');
  1881. });
  1882.  
  1883. $('.html_av-submenu-display-hover').on( 'mouseleave touchstart', '.av-width-submenu', function (e)
  1884. {
  1885. $(this).children("ul.sub-menu").slideUp('fast');
  1886. });
  1887.  
  1888.  
  1889.  
  1890. //toogle hide/show for submenu items
  1891. $('.html_av-submenu-display-click').on( 'click', '.av-width-submenu > a', function (e)
  1892. {
  1893. e.preventDefault();
  1894. e.stopImmediatePropagation();
  1895.  
  1896. var clicked = $(this), parent = clicked.parents('li').eq(0);
  1897.  
  1898. parent.toggleClass('av-show-submenu');
  1899.  
  1900. if(parent.is('.av-show-submenu'))
  1901. {
  1902. parent.children("ul.sub-menu").slideDown('fast');
  1903. }
  1904. else
  1905. {
  1906. parent.children("ul.sub-menu").slideUp('fast');
  1907. }
  1908.  
  1909. });
  1910.  
  1911.  
  1912.  
  1913.  
  1914.  
  1915.  
  1916. (function normalize_layout()
  1917. {
  1918. //if we got the menu outside of the main menu container we need to add it to the container as well
  1919. if(menu_in_logo_container.length) return;
  1920.  
  1921. var menu2 = $('#header .main_menu').clone(true);
  1922. menu2.find('.menu-item:not(.menu-item-avia-special)').remove();
  1923. menu2.insertAfter(logo_container.find('.logo'));
  1924.  
  1925. //check if we got social icons and append it to the secondary menu
  1926. var social = $('#header .social_bookmarks').clone(true);
  1927. if(!social.length) social = $('.av-logo-container .social_bookmarks').clone(true);
  1928.  
  1929. if( social.length )
  1930. {
  1931. menu2.find('.avia-menu').addClass('av_menu_icon_beside');
  1932. menu2.append(social);
  1933. }
  1934.  
  1935. //re select the burger menu if we added a new one
  1936. burger_wrap = $('.av-burger-menu-main a');
  1937. }());
  1938.  
  1939.  
  1940.  
  1941. burger_wrap.click(function(e)
  1942. {
  1943. if(animating) return;
  1944. burger = $(this).find('.av-hamburger'),
  1945. animating = true;
  1946.  
  1947. if(!menu_generated)
  1948. {
  1949. menu_generated = true;
  1950. burger.addClass("av-inserted-main-menu");
  1951.  
  1952. burger_ul = $('<ul>').attr({id:'av-burger-menu-ul', class:''})
  1953. var first_level_items = menu.find('> li:not(.menu-item-avia-special)'); //select all first level items that are not special items
  1954. var list = create_list( first_level_items , burger_ul);
  1955.  
  1956. burger_ul.find('.noMobile').remove(); //remove any menu items with the class noMobile so user can filter manually if he wants
  1957. burger_ul.appendTo(inner_overlay);
  1958. first_level = inner_overlay.find('#av-burger-menu-ul > li');
  1959.  
  1960. if($.fn.avia_smoothscroll){
  1961. $('a[href*="#"]', overlay).avia_smoothscroll(overlay);
  1962. }
  1963. }
  1964.  
  1965. if(burger.is(".is-active"))
  1966. {
  1967. burger.removeClass("is-active");
  1968. htmlEL.removeClass("av-burger-overlay-active-delayed");
  1969.  
  1970. overlay.animate({opacity:0}, function()
  1971. {
  1972. overlay.css({display:'none'});
  1973. htmlEL.removeClass("av-burger-overlay-active");
  1974. animating = false;
  1975. });
  1976.  
  1977. }
  1978. else
  1979. {
  1980. set_list_container_height();
  1981.  
  1982. var offsetTop = header_main.length ? header_main.outerHeight() + header_main.position().top : header.outerHeight() + header.position().top;
  1983.  
  1984. overlay.appendTo($(e.target).parents('.avia-menu'));
  1985.  
  1986. burger_ul.css({padding:( offsetTop ) + "px 0px"});
  1987.  
  1988. first_level.removeClass('av-active-burger-items');
  1989.  
  1990. burger.addClass("is-active");
  1991. htmlEL.addClass("av-burger-overlay-active");
  1992. overlay.css({display:'block'}).animate({opacity:1}, function()
  1993. {
  1994. animating = false;
  1995. });
  1996.  
  1997. setTimeout(function()
  1998. {
  1999. htmlEL.addClass("av-burger-overlay-active-delayed");
  2000.  
  2001. }, 100);
  2002.  
  2003. first_level.each(function(i)
  2004. {
  2005. var _self = $(this);
  2006. setTimeout(function()
  2007. {
  2008. _self.addClass('av-active-burger-items');
  2009. }, (i + 1) * 125)
  2010. });
  2011.  
  2012.  
  2013.  
  2014. }
  2015.  
  2016. e.preventDefault();
  2017. });
  2018.  
  2019.  
  2020.  
  2021.  
  2022. }
  2023.  
  2024.  
  2025.  
  2026.  
  2027. $.AviaAjaxSearch = function(options)
  2028. {
  2029. var defaults = {
  2030. delay: 300, //delay in ms until the user stops typing.
  2031. minChars: 3, //dont start searching before we got at least that much characters
  2032. scope: 'body'
  2033.  
  2034. }
  2035.  
  2036. this.options = $.extend({}, defaults, options);
  2037. this.scope = $(this.options.scope);
  2038. this.timer = false;
  2039. this.lastVal = "";
  2040.  
  2041. this.bind_events();
  2042. }
  2043.  
  2044.  
  2045. $.AviaAjaxSearch.prototype =
  2046. {
  2047. bind_events: function()
  2048. {
  2049. this.scope.on('keyup', '#s:not(".av_disable_ajax_search #s")' , $.proxy( this.try_search, this));
  2050. },
  2051.  
  2052. try_search: function(e)
  2053. {
  2054. clearTimeout(this.timer);
  2055.  
  2056. //only execute search if chars are at least "minChars" and search differs from last one
  2057. if(e.currentTarget.value.length >= this.options.minChars && this.lastVal != $.trim(e.currentTarget.value))
  2058. {
  2059. //wait at least "delay" miliseconds to execute ajax. if user types again during that time dont execute
  2060. this.timer = setTimeout($.proxy( this.do_search, this, e), this.options.delay);
  2061. }
  2062. },
  2063.  
  2064. do_search: function(e)
  2065. {
  2066. var obj = this,
  2067. currentField = $(e.currentTarget).attr( "autocomplete", "off" ),
  2068. form = currentField.parents('form:eq(0)'),
  2069. results = form.find('.ajax_search_response'),
  2070. loading = $('<div class="ajax_load"><span class="ajax_load_inner"></span></div>'),
  2071. action = form.attr('action'),
  2072. values = form.serialize();
  2073. values += '&action=avia_ajax_search';
  2074.  
  2075. //check if the form got get parameters applied and also apply them
  2076. if(action.indexOf('?') != -1)
  2077. {
  2078. action = action.split('?');
  2079. values += "&" + action[1];
  2080. }
  2081.  
  2082. if(!results.length) results = $('<div class="ajax_search_response"></div>').appendTo(form);
  2083.  
  2084. //return if we already hit a no result and user is still typing
  2085. if(results.find('.ajax_not_found').length && e.currentTarget.value.indexOf(this.lastVal) != -1) return;
  2086.  
  2087. this.lastVal = e.currentTarget.value;
  2088.  
  2089. $.ajax({
  2090. url: avia_framework_globals.ajaxurl,
  2091. type: "POST",
  2092. data:values,
  2093. beforeSend: function()
  2094. {
  2095. loading.insertAfter(currentField);
  2096. },
  2097. success: function(response)
  2098. {
  2099. if(response == 0) response = "";
  2100. results.html(response);
  2101. },
  2102. complete: function()
  2103. {
  2104. loading.remove();
  2105. }
  2106. });
  2107. }
  2108. }
  2109.  
  2110.  
  2111.  
  2112.  
  2113.  
  2114.  
  2115.  
  2116.  
  2117.  
  2118.  
  2119. $.AviaTooltip = function(options)
  2120. {
  2121. var defaults = {
  2122. delay: 1500, //delay in ms until the tooltip appears
  2123. delayOut: 300, //delay in ms when instant showing should stop
  2124. delayHide: 0, //delay hiding of tooltip in ms
  2125. "class": "avia-tooltip", //tooltip classname for css styling and alignment
  2126. scope: "body", //area the tooltip should be applied to
  2127. data: "avia-tooltip", //data attribute that contains the tooltip text
  2128. attach:"body", //either attach the tooltip to the "mouse" or to the "element" // todo: implement mouse, make sure that it doesnt overlap with screen borders
  2129. event: 'mouseenter', //mousenter and leave or click and leave
  2130. position:'top', //top or bottom
  2131. extraClass:'avia-tooltip-class', //extra class that is defined by a tooltip element data attribute
  2132. permanent: false, // always display the tooltip?
  2133. within_screen: false // if the tooltip is displayed outside the screen adjust its position
  2134.  
  2135. }
  2136.  
  2137. this.options = $.extend({}, defaults, options);
  2138. this.body = $('body');
  2139. this.scope = $(this.options.scope);
  2140. this.tooltip = $('<div class="'+this.options['class']+' avia-tt"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></div>');
  2141. this.inner = $('<div class="inner_tooltip"></div>').prependTo(this.tooltip);
  2142. this.open = false;
  2143. this.timer = false;
  2144. this.active = false;
  2145.  
  2146. this.bind_events();
  2147. }
  2148.  
  2149. $.AviaTooltip.openTTs = [];
  2150. $.AviaTooltip.prototype =
  2151. {
  2152. bind_events: function()
  2153. {
  2154. var perma_tooltips = '.av-permanent-tooltip [data-'+this.options.data+']',
  2155. default_tooltips = '[data-'+this.options.data+']:not( .av-permanent-tooltip [data-'+this.options.data+'])';
  2156.  
  2157. this.scope.on('av_permanent_show', perma_tooltips, $.proxy( this.display_tooltip, this) );
  2158. $(perma_tooltips).addClass('av-perma-tooltip').trigger('av_permanent_show');
  2159.  
  2160.  
  2161.  
  2162. this.scope.on(this.options.event + ' mouseleave', default_tooltips, $.proxy( this.start_countdown, this) );
  2163.  
  2164. if(this.options.event != 'click')
  2165. {
  2166. this.scope.on('mouseleave', default_tooltips, $.proxy( this.hide_tooltip, this) );
  2167. }
  2168. else
  2169. {
  2170. this.body.on('mousedown', $.proxy( this.hide_tooltip, this) );
  2171. }
  2172.  
  2173. },
  2174.  
  2175. start_countdown: function(e)
  2176. {
  2177. clearTimeout(this.timer);
  2178.  
  2179. if(e.type == this.options.event)
  2180. {
  2181. var delay = this.options.event == 'click' ? 0 : this.open ? 0 : this.options.delay;
  2182.  
  2183. this.timer = setTimeout($.proxy( this.display_tooltip, this, e), delay);
  2184. }
  2185. else if(e.type == 'mouseleave')
  2186. {
  2187. this.timer = setTimeout($.proxy( this.stop_instant_open, this, e), this.options.delayOut);
  2188. }
  2189. e.preventDefault();
  2190. },
  2191.  
  2192. reset_countdown: function(e)
  2193. {
  2194. clearTimeout(this.timer);
  2195. this.timer = false;
  2196. },
  2197.  
  2198. display_tooltip: function(e)
  2199. {
  2200. var _self = this,
  2201. target = this.options.event == "click" ? e.target : e.currentTarget,
  2202. element = $(target),
  2203. text = element.data(this.options.data),
  2204. newTip = element.data('avia-created-tooltip'),
  2205. extraClass = element.data('avia-tooltip-class'),
  2206. attach = this.options.attach == 'element' ? element : this.body,
  2207. offset = this.options.attach == 'element' ? element.position() : element.offset(),
  2208. position = element.data('avia-tooltip-position'),
  2209. align = element.data('avia-tooltip-alignment'),
  2210. force_append= false;
  2211.  
  2212. text = $.trim(text);
  2213.  
  2214. if(element.is('.av-perma-tooltip'))
  2215. {
  2216. offset = {top:0, left:0 };
  2217. attach = element;
  2218. force_append = true;
  2219. }
  2220.  
  2221. if(text == "") return;
  2222. if(position == "" || typeof position == 'undefined') position = this.options.position;
  2223. if(align == "" || typeof align == 'undefined') align = 'center';
  2224.  
  2225. if(typeof newTip != 'undefined')
  2226. {
  2227. newTip = $.AviaTooltip.openTTs[newTip];
  2228. }
  2229. else
  2230. {
  2231. this.inner.html(text);
  2232. newTip = this.tooltip.clone();
  2233.  
  2234. if(this.options.attach == 'element' && force_append !== true)
  2235. {
  2236. newTip.insertAfter(attach);
  2237. }
  2238. else
  2239. {
  2240. newTip.appendTo(attach);
  2241. }
  2242.  
  2243. if(extraClass != "") newTip.addClass(extraClass);
  2244. }
  2245.  
  2246. this.open = true;
  2247. this.active = newTip;
  2248.  
  2249. if((newTip.is(':animated:visible') && e.type == 'click') || element.is('.'+this.options['class']) || element.parents('.'+this.options['class']).length != 0) return;
  2250.  
  2251.  
  2252. var animate1 = {}, animate2 = {}, pos1 = "", pos2 = "";
  2253.  
  2254. if(position == "top" || position == "bottom")
  2255. {
  2256. switch(align)
  2257. {
  2258. case "left": pos2 = offset.left; break;
  2259. case "right": pos2 = offset.left + element.outerWidth() - newTip.outerWidth(); break;
  2260. default: pos2 = (offset.left + (element.outerWidth() / 2)) - (newTip.outerWidth() / 2); break;
  2261. }
  2262.  
  2263. if(_self.options.within_screen) //used to keep search field inside screen
  2264. {
  2265. var boundary = element.offset().left + (element.outerWidth() / 2) - (newTip.outerWidth() / 2) + parseInt(newTip.css('margin-left'),10);
  2266. if(boundary < 0)
  2267. {
  2268. pos2 = pos2 - boundary;
  2269. }
  2270.  
  2271. }
  2272.  
  2273.  
  2274. }
  2275. else
  2276. {
  2277. switch(align)
  2278. {
  2279. case "top": pos1 = offset.top; break;
  2280. case "bottom": pos1 = offset.top + element.outerHeight() - newTip.outerHeight(); break;
  2281. default: pos1 = (offset.top + (element.outerHeight() / 2)) - (newTip.outerHeight() / 2); break;
  2282. }
  2283. }
  2284.  
  2285. switch(position)
  2286. {
  2287. case "top":
  2288. pos1 = offset.top - newTip.outerHeight();
  2289. animate1 = {top: pos1 - 10, left: pos2};
  2290. animate2 = {top: pos1};
  2291. break;
  2292. case "bottom":
  2293. pos1 = offset.top + element.outerHeight();
  2294. animate1 = {top: pos1 + 10, left: pos2};
  2295. animate2 = {top: pos1};
  2296. break;
  2297. case "left":
  2298. pos2 = offset.left - newTip.outerWidth();
  2299. animate1 = {top: pos1, left: pos2 -10};
  2300. animate2 = {left: pos2};
  2301. break;
  2302. case "right":
  2303. pos2 = offset.left + element.outerWidth();
  2304. animate1 = {top: pos1, left: pos2 + 10};
  2305. animate2 = {left: pos2};
  2306. break;
  2307. }
  2308.  
  2309. animate1['display'] = "block";
  2310. animate1['opacity'] = 0;
  2311. animate2['opacity'] = 1;
  2312.  
  2313.  
  2314. newTip.css(animate1).stop().animate(animate2,200);
  2315. newTip.find('input, textarea').focus();
  2316. $.AviaTooltip.openTTs.push(newTip);
  2317. element.data('avia-created-tooltip', $.AviaTooltip.openTTs.length - 1);
  2318.  
  2319. },
  2320.  
  2321. hide_tooltip: function(e)
  2322. {
  2323. var element = $(e.currentTarget) , newTip, animateTo,
  2324. position = element.data('avia-tooltip-position'),
  2325. align = element.data('avia-tooltip-alignment');
  2326.  
  2327. if(position == "" || typeof position == 'undefined') position = this.options.position;
  2328. if(align == "" || typeof align == 'undefined') align = 'center';
  2329.  
  2330. if(this.options.event == 'click')
  2331. {
  2332. element = $(e.target);
  2333.  
  2334. if(!element.is('.'+this.options['class']) && element.parents('.'+this.options['class']).length == 0)
  2335. {
  2336. if(this.active.length) { newTip = this.active; this.active = false;}
  2337. }
  2338. }
  2339. else
  2340. {
  2341. newTip = element.data('avia-created-tooltip');
  2342. newTip = typeof newTip != 'undefined' ? $.AviaTooltip.openTTs[newTip] : false;
  2343. }
  2344.  
  2345. if(newTip)
  2346. {
  2347. var animate = {opacity:0};
  2348.  
  2349. switch(position)
  2350. {
  2351. case "top":
  2352. animate['top'] = parseInt(newTip.css('top'),10) - 10;
  2353. break;
  2354. case "bottom":
  2355. animate['top'] = parseInt(newTip.css('top'),10) + 10;
  2356. break;
  2357. case "left":
  2358. animate['left'] = parseInt(newTip.css('left'), 10) - 10;
  2359. break;
  2360. case "right":
  2361. animate['left'] = parseInt(newTip.css('left'), 10) + 10;
  2362. break;
  2363. }
  2364.  
  2365. newTip.animate(animate, 200, function()
  2366. {
  2367. newTip.css({display:'none'});
  2368. });
  2369. }
  2370. },
  2371.  
  2372. stop_instant_open: function(e)
  2373. {
  2374. this.open = false;
  2375. }
  2376. }
  2377.  
  2378.  
  2379. })( jQuery );
  2380.  
  2381.  
  2382.  
  2383.  
  2384.  
  2385.  
  2386. /*!
  2387. * Isotope PACKAGED v3.0.2
  2388. *
  2389. * Licensed GPLv3 for open source use
  2390. * or Isotope Commercial License for commercial use
  2391. *
  2392. * http://isotope.metafizzy.co
  2393. * Copyright 2016 Metafizzy
  2394. */
  2395.  
  2396. !function(t,e){"function"==typeof define&&define.amd?define("jquery-bridget/jquery-bridget",["jquery"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("jquery")):t.jQueryBridget=e(t,t.jQuery)}(window,function(t,e){"use strict";function i(i,s,a){function u(t,e,n){var o,s="$()."+i+'("'+e+'")';return t.each(function(t,u){var h=a.data(u,i);if(!h)return void r(i+" not initialized. Cannot call methods, i.e. "+s);var d=h[e];if(!d||"_"==e.charAt(0))return void r(s+" is not a valid method");var l=d.apply(h,n);o=void 0===o?l:o}),void 0!==o?o:t}function h(t,e){t.each(function(t,n){var o=a.data(n,i);o?(o.option(e),o._init()):(o=new s(n,e),a.data(n,i,o))})}a=a||e||t.jQuery,a&&(s.prototype.option||(s.prototype.option=function(t){a.isPlainObject(t)&&(this.options=a.extend(!0,this.options,t))}),a.fn[i]=function(t){if("string"==typeof t){var e=o.call(arguments,1);return u(this,t,e)}return h(this,t),this},n(a))}function n(t){!t||t&&t.bridget||(t.bridget=i)}var o=Array.prototype.slice,s=t.console,r="undefined"==typeof s?function(){}:function(t){s.error(t)};return n(e||t.jQuery),i}),function(t,e){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",e):"object"==typeof module&&module.exports?module.exports=e():t.EvEmitter=e()}("undefined"!=typeof window?window:this,function(){function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},n=i[t]=i[t]||[];return n.indexOf(e)==-1&&n.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{},n=i[t]=i[t]||{};return n[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=i.indexOf(e);return n!=-1&&i.splice(n,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=0,o=i[n];e=e||[];for(var s=this._onceEvents&&this._onceEvents[t];o;){var r=s&&s[o];r&&(this.off(t,o),delete s[o]),o.apply(this,e),n+=r?0:1,o=i[n]}return this}},t}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("get-size/get-size",[],function(){return e()}):"object"==typeof module&&module.exports?module.exports=e():t.getSize=e()}(window,function(){"use strict";function t(t){var e=parseFloat(t),i=t.indexOf("%")==-1&&!isNaN(e);return i&&e}function e(){}function i(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;e<h;e++){var i=u[e];t[i]=0}return t}function n(t){var e=getComputedStyle(t);return e||a("Style returned "+e+". Are you running this code in a hidden iframe on Firefox? See http://bit.ly/getsizebug1"),e}function o(){if(!d){d=!0;var e=document.createElement("div");e.style.width="200px",e.style.padding="1px 2px 3px 4px",e.style.borderStyle="solid",e.style.borderWidth="1px 2px 3px 4px",e.style.boxSizing="border-box";var i=document.body||document.documentElement;i.appendChild(e);var o=n(e);s.isBoxSizeOuter=r=200==t(o.width),i.removeChild(e)}}function s(e){if(o(),"string"==typeof e&&(e=document.querySelector(e)),e&&"object"==typeof e&&e.nodeType){var s=n(e);if("none"==s.display)return i();var a={};a.width=e.offsetWidth,a.height=e.offsetHeight;for(var d=a.isBorderBox="border-box"==s.boxSizing,l=0;l<h;l++){var f=u[l],c=s[f],m=parseFloat(c);a[f]=isNaN(m)?0:m}var p=a.paddingLeft+a.paddingRight,y=a.paddingTop+a.paddingBottom,g=a.marginLeft+a.marginRight,v=a.marginTop+a.marginBottom,_=a.borderLeftWidth+a.borderRightWidth,I=a.borderTopWidth+a.borderBottomWidth,z=d&&r,x=t(s.width);x!==!1&&(a.width=x+(z?0:p+_));var S=t(s.height);return S!==!1&&(a.height=S+(z?0:y+I)),a.innerWidth=a.width-(p+_),a.innerHeight=a.height-(y+I),a.outerWidth=a.width+g,a.outerHeight=a.height+v,a}}var r,a="undefined"==typeof console?e:function(t){console.error(t)},u=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],h=u.length,d=!1;return s}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("desandro-matches-selector/matches-selector",e):"object"==typeof module&&module.exports?module.exports=e():t.matchesSelector=e()}(window,function(){"use strict";var t=function(){var t=Element.prototype;if(t.matches)return"matches";if(t.matchesSelector)return"matchesSelector";for(var e=["webkit","moz","ms","o"],i=0;i<e.length;i++){var n=e[i],o=n+"MatchesSelector";if(t[o])return o}}();return function(e,i){return e[t](i)}}),function(t,e){"function"==typeof define&&define.amd?define("fizzy-ui-utils/utils",["desandro-matches-selector/matches-selector"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("desandro-matches-selector")):t.fizzyUIUtils=e(t,t.matchesSelector)}(window,function(t,e){var i={};i.extend=function(t,e){for(var i in e)t[i]=e[i];return t},i.modulo=function(t,e){return(t%e+e)%e},i.makeArray=function(t){var e=[];if(Array.isArray(t))e=t;else if(t&&"number"==typeof t.length)for(var i=0;i<t.length;i++)e.push(t[i]);else e.push(t);return e},i.removeFrom=function(t,e){var i=t.indexOf(e);i!=-1&&t.splice(i,1)},i.getParent=function(t,i){for(;t!=document.body;)if(t=t.parentNode,e(t,i))return t},i.getQueryElement=function(t){return"string"==typeof t?document.querySelector(t):t},i.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},i.filterFindElements=function(t,n){t=i.makeArray(t);var o=[];return t.forEach(function(t){if(t instanceof HTMLElement){if(!n)return void o.push(t);e(t,n)&&o.push(t);for(var i=t.querySelectorAll(n),s=0;s<i.length;s++)o.push(i[s])}}),o},i.debounceMethod=function(t,e,i){var n=t.prototype[e],o=e+"Timeout";t.prototype[e]=function(){var t=this[o];t&&clearTimeout(t);var e=arguments,s=this;this[o]=setTimeout(function(){n.apply(s,e),delete s[o]},i||100)}},i.docReady=function(t){var e=document.readyState;"complete"==e||"interactive"==e?setTimeout(t):document.addEventListener("DOMContentLoaded",t)},i.toDashed=function(t){return t.replace(/(.)([A-Z])/g,function(t,e,i){return e+"-"+i}).toLowerCase()};var n=t.console;return i.htmlInit=function(e,o){i.docReady(function(){var s=i.toDashed(o),r="data-"+s,a=document.querySelectorAll("["+r+"]"),u=document.querySelectorAll(".js-"+s),h=i.makeArray(a).concat(i.makeArray(u)),d=r+"-options",l=t.jQuery;h.forEach(function(t){var i,s=t.getAttribute(r)||t.getAttribute(d);try{i=s&&JSON.parse(s)}catch(a){return void(n&&n.error("Error parsing "+r+" on "+t.className+": "+a))}var u=new e(t,i);l&&l.data(t,o,u)})})},i}),function(t,e){"function"==typeof define&&define.amd?define("outlayer/item",["ev-emitter/ev-emitter","get-size/get-size"],e):"object"==typeof module&&module.exports?module.exports=e(require("ev-emitter"),require("get-size")):(t.Outlayer={},t.Outlayer.Item=e(t.EvEmitter,t.getSize))}(window,function(t,e){"use strict";function i(t){for(var e in t)return!1;return e=null,!0}function n(t,e){t&&(this.element=t,this.layout=e,this.position={x:0,y:0},this._create())}function o(t){return t.replace(/([A-Z])/g,function(t){return"-"+t.toLowerCase()})}var s=document.documentElement.style,r="string"==typeof s.transition?"transition":"WebkitTransition",a="string"==typeof s.transform?"transform":"WebkitTransform",u={WebkitTransition:"webkitTransitionEnd",transition:"transitionend"}[r],h={transform:a,transition:r,transitionDuration:r+"Duration",transitionProperty:r+"Property",transitionDelay:r+"Delay"},d=n.prototype=Object.create(t.prototype);d.constructor=n,d._create=function(){this._transn={ingProperties:{},clean:{},onEnd:{}},this.css({position:"absolute"})},d.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},d.getSize=function(){this.size=e(this.element)},d.css=function(t){var e=this.element.style;for(var i in t){var n=h[i]||i;e[n]=t[i]}},d.getPosition=function(){var t=getComputedStyle(this.element),e=this.layout._getOption("originLeft"),i=this.layout._getOption("originTop"),n=t[e?"left":"right"],o=t[i?"top":"bottom"],s=this.layout.size,r=n.indexOf("%")!=-1?parseFloat(n)/100*s.width:parseInt(n,10),a=o.indexOf("%")!=-1?parseFloat(o)/100*s.height:parseInt(o,10);r=isNaN(r)?0:r,a=isNaN(a)?0:a,r-=e?s.paddingLeft:s.paddingRight,a-=i?s.paddingTop:s.paddingBottom,this.position.x=r,this.position.y=a},d.layoutPosition=function(){var t=this.layout.size,e={},i=this.layout._getOption("originLeft"),n=this.layout._getOption("originTop"),o=i?"paddingLeft":"paddingRight",s=i?"left":"right",r=i?"right":"left",a=this.position.x+t[o];e[s]=this.getXValue(a),e[r]="";var u=n?"paddingTop":"paddingBottom",h=n?"top":"bottom",d=n?"bottom":"top",l=this.position.y+t[u];e[h]=this.getYValue(l),e[d]="",this.css(e),this.emitEvent("layout",[this])},d.getXValue=function(t){var e=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&!e?t/this.layout.size.width*100+"%":t+"px"},d.getYValue=function(t){var e=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&e?t/this.layout.size.height*100+"%":t+"px"},d._transitionTo=function(t,e){this.getPosition();var i=this.position.x,n=this.position.y,o=parseInt(t,10),s=parseInt(e,10),r=o===this.position.x&&s===this.position.y;if(this.setPosition(t,e),r&&!this.isTransitioning)return void this.layoutPosition();var a=t-i,u=e-n,h={};h.transform=this.getTranslate(a,u),this.transition({to:h,onTransitionEnd:{transform:this.layoutPosition},isCleaning:!0})},d.getTranslate=function(t,e){var i=this.layout._getOption("originLeft"),n=this.layout._getOption("originTop");return t=i?t:-t,e=n?e:-e,"translate3d("+t+"px, "+e+"px, 0)"},d.goTo=function(t,e){this.setPosition(t,e),this.layoutPosition()},d.moveTo=d._transitionTo,d.setPosition=function(t,e){this.position.x=parseInt(t,10),this.position.y=parseInt(e,10)},d._nonTransition=function(t){this.css(t.to),t.isCleaning&&this._removeStyles(t.to);for(var e in t.onTransitionEnd)t.onTransitionEnd[e].call(this)},d.transition=function(t){if(!parseFloat(this.layout.options.transitionDuration))return void this._nonTransition(t);var e=this._transn;for(var i in t.onTransitionEnd)e.onEnd[i]=t.onTransitionEnd[i];for(i in t.to)e.ingProperties[i]=!0,t.isCleaning&&(e.clean[i]=!0);if(t.from){this.css(t.from);var n=this.element.offsetHeight;n=null}this.enableTransition(t.to),this.css(t.to),this.isTransitioning=!0};var l="opacity,"+o(a);d.enableTransition=function(){if(!this.isTransitioning){var t=this.layout.options.transitionDuration;t="number"==typeof t?t+"ms":t,this.css({transitionProperty:l,transitionDuration:t,transitionDelay:this.staggerDelay||0}),this.element.addEventListener(u,this,!1)}},d.onwebkitTransitionEnd=function(t){this.ontransitionend(t)},d.onotransitionend=function(t){this.ontransitionend(t)};var f={"-webkit-transform":"transform"};d.ontransitionend=function(t){if(t.target===this.element){var e=this._transn,n=f[t.propertyName]||t.propertyName;if(delete e.ingProperties[n],i(e.ingProperties)&&this.disableTransition(),n in e.clean&&(this.element.style[t.propertyName]="",delete e.clean[n]),n in e.onEnd){var o=e.onEnd[n];o.call(this),delete e.onEnd[n]}this.emitEvent("transitionEnd",[this])}},d.disableTransition=function(){this.removeTransitionStyles(),this.element.removeEventListener(u,this,!1),this.isTransitioning=!1},d._removeStyles=function(t){var e={};for(var i in t)e[i]="";this.css(e)};var c={transitionProperty:"",transitionDuration:"",transitionDelay:""};return d.removeTransitionStyles=function(){this.css(c)},d.stagger=function(t){t=isNaN(t)?0:t,this.staggerDelay=t+"ms"},d.removeElem=function(){this.element.parentNode.removeChild(this.element),this.css({display:""}),this.emitEvent("remove",[this])},d.remove=function(){return r&&parseFloat(this.layout.options.transitionDuration)?(this.once("transitionEnd",function(){this.removeElem()}),void this.hide()):void this.removeElem()},d.reveal=function(){delete this.isHidden,this.css({display:""});var t=this.layout.options,e={},i=this.getHideRevealTransitionEndProperty("visibleStyle");e[i]=this.onRevealTransitionEnd,this.transition({from:t.hiddenStyle,to:t.visibleStyle,isCleaning:!0,onTransitionEnd:e})},d.onRevealTransitionEnd=function(){this.isHidden||this.emitEvent("reveal")},d.getHideRevealTransitionEndProperty=function(t){var e=this.layout.options[t];if(e.opacity)return"opacity";for(var i in e)return i},d.hide=function(){this.isHidden=!0,this.css({display:""});var t=this.layout.options,e={},i=this.getHideRevealTransitionEndProperty("hiddenStyle");e[i]=this.onHideTransitionEnd,this.transition({from:t.visibleStyle,to:t.hiddenStyle,isCleaning:!0,onTransitionEnd:e})},d.onHideTransitionEnd=function(){this.isHidden&&(this.css({display:"none"}),this.emitEvent("hide"))},d.destroy=function(){this.css({position:"",left:"",right:"",top:"",bottom:"",transition:"",transform:""})},n}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("outlayer/outlayer",["ev-emitter/ev-emitter","get-size/get-size","fizzy-ui-utils/utils","./item"],function(i,n,o,s){return e(t,i,n,o,s)}):"object"==typeof module&&module.exports?module.exports=e(t,require("ev-emitter"),require("get-size"),require("fizzy-ui-utils"),require("./item")):t.Outlayer=e(t,t.EvEmitter,t.getSize,t.fizzyUIUtils,t.Outlayer.Item)}(window,function(t,e,i,n,o){"use strict";function s(t,e){var i=n.getQueryElement(t);if(!i)return void(u&&u.error("Bad element for "+this.constructor.namespace+": "+(i||t)));this.element=i,h&&(this.$element=h(this.element)),this.options=n.extend({},this.constructor.defaults),this.option(e);var o=++l;this.element.outlayerGUID=o,f[o]=this,this._create();var s=this._getOption("initLayout");s&&this.layout()}function r(t){function e(){t.apply(this,arguments)}return e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e}function a(t){if("number"==typeof t)return t;var e=t.match(/(^\d*\.?\d*)(\w*)/),i=e&&e[1],n=e&&e[2];if(!i.length)return 0;i=parseFloat(i);var o=m[n]||1;return i*o}var u=t.console,h=t.jQuery,d=function(){},l=0,f={};s.namespace="outlayer",s.Item=o,s.defaults={containerStyle:{position:"relative"},initLayout:!0,originLeft:!0,originTop:!0,resize:!0,resizeContainer:!0,transitionDuration:"0.4s",hiddenStyle:{opacity:0,transform:"scale(0.001)"},visibleStyle:{opacity:1,transform:"scale(1)"}};var c=s.prototype;n.extend(c,e.prototype),c.option=function(t){n.extend(this.options,t)},c._getOption=function(t){var e=this.constructor.compatOptions[t];return e&&void 0!==this.options[e]?this.options[e]:this.options[t]},s.compatOptions={initLayout:"isInitLayout",horizontal:"isHorizontal",layoutInstant:"isLayoutInstant",originLeft:"isOriginLeft",originTop:"isOriginTop",resize:"isResizeBound",resizeContainer:"isResizingContainer"},c._create=function(){this.reloadItems(),this.stamps=[],this.stamp(this.options.stamp),n.extend(this.element.style,this.options.containerStyle);var t=this._getOption("resize");t&&this.bindResize()},c.reloadItems=function(){this.items=this._itemize(this.element.children)},c._itemize=function(t){for(var e=this._filterFindItemElements(t),i=this.constructor.Item,n=[],o=0;o<e.length;o++){var s=e[o],r=new i(s,this);n.push(r)}return n},c._filterFindItemElements=function(t){return n.filterFindElements(t,this.options.itemSelector)},c.getItemElements=function(){return this.items.map(function(t){return t.element})},c.layout=function(){this._resetLayout(),this._manageStamps();var t=this._getOption("layoutInstant"),e=void 0!==t?t:!this._isLayoutInited;this.layoutItems(this.items,e),this._isLayoutInited=!0},c._init=c.layout,c._resetLayout=function(){this.getSize()},c.getSize=function(){this.size=i(this.element)},c._getMeasurement=function(t,e){var n,o=this.options[t];o?("string"==typeof o?n=this.element.querySelector(o):o instanceof HTMLElement&&(n=o),this[t]=n?i(n)[e]:o):this[t]=0},c.layoutItems=function(t,e){t=this._getItemsForLayout(t),this._layoutItems(t,e),this._postLayout()},c._getItemsForLayout=function(t){return t.filter(function(t){return!t.isIgnored})},c._layoutItems=function(t,e){if(this._emitCompleteOnItems("layout",t),t&&t.length){var i=[];t.forEach(function(t){var n=this._getItemLayoutPosition(t);n.item=t,n.isInstant=e||t.isLayoutInstant,i.push(n)},this),this._processLayoutQueue(i)}},c._getItemLayoutPosition=function(){return{x:0,y:0}},c._processLayoutQueue=function(t){this.updateStagger(),t.forEach(function(t,e){this._positionItem(t.item,t.x,t.y,t.isInstant,e)},this)},c.updateStagger=function(){var t=this.options.stagger;return null===t||void 0===t?void(this.stagger=0):(this.stagger=a(t),this.stagger)},c._positionItem=function(t,e,i,n,o){n?t.goTo(e,i):(t.stagger(o*this.stagger),t.moveTo(e,i))},c._postLayout=function(){this.resizeContainer()},c.resizeContainer=function(){var t=this._getOption("resizeContainer");if(t){var e=this._getContainerSize();e&&(this._setContainerMeasure(e.width,!0),this._setContainerMeasure(e.height,!1))}},c._getContainerSize=d,c._setContainerMeasure=function(t,e){if(void 0!==t){var i=this.size;i.isBorderBox&&(t+=e?i.paddingLeft+i.paddingRight+i.borderLeftWidth+i.borderRightWidth:i.paddingBottom+i.paddingTop+i.borderTopWidth+i.borderBottomWidth),t=Math.max(t,0),this.element.style[e?"width":"height"]=t+"px"}},c._emitCompleteOnItems=function(t,e){function i(){o.dispatchEvent(t+"Complete",null,[e])}function n(){r++,r==s&&i()}var o=this,s=e.length;if(!e||!s)return void i();var r=0;e.forEach(function(e){e.once(t,n)})},c.dispatchEvent=function(t,e,i){var n=e?[e].concat(i):i;if(this.emitEvent(t,n),h)if(this.$element=this.$element||h(this.element),e){var o=h.Event(e);o.type=t,this.$element.trigger(o,i)}else this.$element.trigger(t,i)},c.ignore=function(t){var e=this.getItem(t);e&&(e.isIgnored=!0)},c.unignore=function(t){var e=this.getItem(t);e&&delete e.isIgnored},c.stamp=function(t){t=this._find(t),t&&(this.stamps=this.stamps.concat(t),t.forEach(this.ignore,this))},c.unstamp=function(t){t=this._find(t),t&&t.forEach(function(t){n.removeFrom(this.stamps,t),this.unignore(t)},this)},c._find=function(t){if(t)return"string"==typeof t&&(t=this.element.querySelectorAll(t)),t=n.makeArray(t)},c._manageStamps=function(){this.stamps&&this.stamps.length&&(this._getBoundingRect(),this.stamps.forEach(this._manageStamp,this))},c._getBoundingRect=function(){var t=this.element.getBoundingClientRect(),e=this.size;this._boundingRect={left:t.left+e.paddingLeft+e.borderLeftWidth,top:t.top+e.paddingTop+e.borderTopWidth,right:t.right-(e.paddingRight+e.borderRightWidth),bottom:t.bottom-(e.paddingBottom+e.borderBottomWidth)}},c._manageStamp=d,c._getElementOffset=function(t){var e=t.getBoundingClientRect(),n=this._boundingRect,o=i(t),s={left:e.left-n.left-o.marginLeft,top:e.top-n.top-o.marginTop,right:n.right-e.right-o.marginRight,bottom:n.bottom-e.bottom-o.marginBottom};return s},c.handleEvent=n.handleEvent,c.bindResize=function(){t.addEventListener("resize",this),this.isResizeBound=!0},c.unbindResize=function(){t.removeEventListener("resize",this),this.isResizeBound=!1},c.onresize=function(){this.resize()},n.debounceMethod(s,"onresize",100),c.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&this.layout()},c.needsResizeLayout=function(){var t=i(this.element),e=this.size&&t;return e&&t.innerWidth!==this.size.innerWidth},c.addItems=function(t){var e=this._itemize(t);return e.length&&(this.items=this.items.concat(e)),e},c.appended=function(t){var e=this.addItems(t);e.length&&(this.layoutItems(e,!0),this.reveal(e))},c.prepended=function(t){var e=this._itemize(t);if(e.length){var i=this.items.slice(0);this.items=e.concat(i),this._resetLayout(),this._manageStamps(),this.layoutItems(e,!0),this.reveal(e),this.layoutItems(i)}},c.reveal=function(t){if(this._emitCompleteOnItems("reveal",t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.reveal()})}},c.hide=function(t){if(this._emitCompleteOnItems("hide",t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.hide()})}},c.revealItemElements=function(t){var e=this.getItems(t);this.reveal(e)},c.hideItemElements=function(t){var e=this.getItems(t);this.hide(e)},c.getItem=function(t){for(var e=0;e<this.items.length;e++){var i=this.items[e];if(i.element==t)return i}},c.getItems=function(t){t=n.makeArray(t);var e=[];return t.forEach(function(t){var i=this.getItem(t);i&&e.push(i)},this),e},c.remove=function(t){var e=this.getItems(t);this._emitCompleteOnItems("remove",e),e&&e.length&&e.forEach(function(t){t.remove(),n.removeFrom(this.items,t)},this)},c.destroy=function(){var t=this.element.style;t.height="",t.position="",t.width="",this.items.forEach(function(t){t.destroy()}),this.unbindResize();var e=this.element.outlayerGUID;delete f[e],delete this.element.outlayerGUID,h&&h.removeData(this.element,this.constructor.namespace)},s.data=function(t){t=n.getQueryElement(t);var e=t&&t.outlayerGUID;return e&&f[e]},s.create=function(t,e){var i=r(s);return i.defaults=n.extend({},s.defaults),n.extend(i.defaults,e),i.compatOptions=n.extend({},s.compatOptions),i.namespace=t,i.data=s.data,i.Item=r(o),n.htmlInit(i,t),h&&h.bridget&&h.bridget(t,i),i};var m={ms:1,s:1e3};return s.Item=o,s}),function(t,e){"function"==typeof define&&define.amd?define("isotope/js/item",["outlayer/outlayer"],e):"object"==typeof module&&module.exports?module.exports=e(require("outlayer")):(t.Isotope=t.Isotope||{},t.Isotope.Item=e(t.Outlayer))}(window,function(t){"use strict";function e(){t.Item.apply(this,arguments)}var i=e.prototype=Object.create(t.Item.prototype),n=i._create;i._create=function(){this.id=this.layout.itemGUID++,n.call(this),this.sortData={}},i.updateSortData=function(){if(!this.isIgnored){this.sortData.id=this.id,this.sortData["original-order"]=this.id,this.sortData.random=Math.random();var t=this.layout.options.getSortData,e=this.layout._sorters;for(var i in t){var n=e[i];this.sortData[i]=n(this.element,this)}}};var o=i.destroy;return i.destroy=function(){o.apply(this,arguments),this.css({display:""})},e}),function(t,e){"function"==typeof define&&define.amd?define("isotope/js/layout-mode",["get-size/get-size","outlayer/outlayer"],e):"object"==typeof module&&module.exports?module.exports=e(require("get-size"),require("outlayer")):(t.Isotope=t.Isotope||{},t.Isotope.LayoutMode=e(t.getSize,t.Outlayer))}(window,function(t,e){"use strict";function i(t){this.isotope=t,t&&(this.options=t.options[this.namespace],this.element=t.element,this.items=t.filteredItems,this.size=t.size)}var n=i.prototype,o=["_resetLayout","_getItemLayoutPosition","_manageStamp","_getContainerSize","_getElementOffset","needsResizeLayout","_getOption"];return o.forEach(function(t){n[t]=function(){return e.prototype[t].apply(this.isotope,arguments)}}),n.needsVerticalResizeLayout=function(){var e=t(this.isotope.element),i=this.isotope.size&&e;return i&&e.innerHeight!=this.isotope.size.innerHeight},n._getMeasurement=function(){this.isotope._getMeasurement.apply(this,arguments)},n.getColumnWidth=function(){this.getSegmentSize("column","Width")},n.getRowHeight=function(){this.getSegmentSize("row","Height")},n.getSegmentSize=function(t,e){var i=t+e,n="outer"+e;if(this._getMeasurement(i,n),!this[i]){var o=this.getFirstItemSize();this[i]=o&&o[n]||this.isotope.size["inner"+e]}},n.getFirstItemSize=function(){var e=this.isotope.filteredItems[0];return e&&e.element&&t(e.element)},n.layout=function(){this.isotope.layout.apply(this.isotope,arguments)},n.getSize=function(){this.isotope.getSize(),this.size=this.isotope.size},i.modes={},i.create=function(t,e){function o(){i.apply(this,arguments)}return o.prototype=Object.create(n),o.prototype.constructor=o,e&&(o.options=e),o.prototype.namespace=t,i.modes[t]=o,o},i}),function(t,e){"function"==typeof define&&define.amd?define("masonry/masonry",["outlayer/outlayer","get-size/get-size"],e):"object"==typeof module&&module.exports?module.exports=e(require("outlayer"),require("get-size")):t.Masonry=e(t.Outlayer,t.getSize)}(window,function(t,e){var i=t.create("masonry");return i.compatOptions.fitWidth="isFitWidth",i.prototype._resetLayout=function(){this.getSize(),this._getMeasurement("columnWidth","outerWidth"),this._getMeasurement("gutter","outerWidth"),this.measureColumns(),this.colYs=[];for(var t=0;t<this.cols;t++)this.colYs.push(0);this.maxY=0},i.prototype.measureColumns=function(){if(this.getContainerWidth(),!this.columnWidth){var t=this.items[0],i=t&&t.element;this.columnWidth=i&&e(i).outerWidth||this.containerWidth}var n=this.columnWidth+=this.gutter,o=this.containerWidth+this.gutter,s=o/n,r=n-o%n,a=r&&r<1?"round":"floor";s=Math[a](s),this.cols=Math.max(s,1)},i.prototype.getContainerWidth=function(){var t=this._getOption("fitWidth"),i=t?this.element.parentNode:this.element,n=e(i);this.containerWidth=n&&n.innerWidth},i.prototype._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth%this.columnWidth,i=e&&e<1?"round":"ceil",n=Math[i](t.size.outerWidth/this.columnWidth);n=Math.min(n,this.cols);for(var o=this._getColGroup(n),s=Math.min.apply(Math,o),r=o.indexOf(s),a={x:this.columnWidth*r,y:s},u=s+t.size.outerHeight,h=this.cols+1-o.length,d=0;d<h;d++)this.colYs[r+d]=u;return a},i.prototype._getColGroup=function(t){if(t<2)return this.colYs;for(var e=[],i=this.cols+1-t,n=0;n<i;n++){var o=this.colYs.slice(n,n+t);e[n]=Math.max.apply(Math,o)}return e},i.prototype._manageStamp=function(t){var i=e(t),n=this._getElementOffset(t),o=this._getOption("originLeft"),s=o?n.left:n.right,r=s+i.outerWidth,a=Math.floor(s/this.columnWidth);a=Math.max(0,a);var u=Math.floor(r/this.columnWidth);u-=r%this.columnWidth?0:1,u=Math.min(this.cols-1,u);for(var h=this._getOption("originTop"),d=(h?n.top:n.bottom)+i.outerHeight,l=a;l<=u;l++)this.colYs[l]=Math.max(d,this.colYs[l])},i.prototype._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var t={height:this.maxY};return this._getOption("fitWidth")&&(t.width=this._getContainerFitWidth()),t},i.prototype._getContainerFitWidth=function(){for(var t=0,e=this.cols;--e&&0===this.colYs[e];)t++;return(this.cols-t)*this.columnWidth-this.gutter},i.prototype.needsResizeLayout=function(){var t=this.containerWidth;return this.getContainerWidth(),t!=this.containerWidth},i}),function(t,e){"function"==typeof define&&define.amd?define("isotope/js/layout-modes/masonry",["../layout-mode","masonry/masonry"],e):"object"==typeof module&&module.exports?module.exports=e(require("../layout-mode"),require("masonry-layout")):e(t.Isotope.LayoutMode,t.Masonry)}(window,function(t,e){"use strict";var i=t.create("masonry"),n=i.prototype,o={_getElementOffset:!0,layout:!0,_getMeasurement:!0};for(var s in e.prototype)o[s]||(n[s]=e.prototype[s]);var r=n.measureColumns;n.measureColumns=function(){this.items=this.isotope.filteredItems,r.call(this)};var a=n._getOption;return n._getOption=function(t){return"fitWidth"==t?void 0!==this.options.isFitWidth?this.options.isFitWidth:this.options.fitWidth:a.apply(this.isotope,arguments)},i}),function(t,e){"function"==typeof define&&define.amd?define("isotope/js/layout-modes/fit-rows",["../layout-mode"],e):"object"==typeof exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("fitRows"),i=e.prototype;return i._resetLayout=function(){this.x=0,this.y=0,this.maxY=0,this._getMeasurement("gutter","outerWidth")},i._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth+this.gutter,i=this.isotope.size.innerWidth+this.gutter;0!==this.x&&e+this.x>i&&(this.x=0,this.y=this.maxY);var n={x:this.x,y:this.y};return this.maxY=Math.max(this.maxY,this.y+t.size.outerHeight),this.x+=e,n},i._getContainerSize=function(){return{height:this.maxY}},e}),function(t,e){"function"==typeof define&&define.amd?define("isotope/js/layout-modes/vertical",["../layout-mode"],e):"object"==typeof module&&module.exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("vertical",{horizontalAlignment:0}),i=e.prototype;return i._resetLayout=function(){this.y=0},i._getItemLayoutPosition=function(t){t.getSize();var e=(this.isotope.size.innerWidth-t.size.outerWidth)*this.options.horizontalAlignment,i=this.y;return this.y+=t.size.outerHeight,{x:e,y:i}},i._getContainerSize=function(){return{height:this.y}},e}),function(t,e){"function"==typeof define&&define.amd?define(["outlayer/outlayer","get-size/get-size","desandro-matches-selector/matches-selector","fizzy-ui-utils/utils","isotope/js/item","isotope/js/layout-mode","isotope/js/layout-modes/masonry","isotope/js/layout-modes/fit-rows","isotope/js/layout-modes/vertical"],function(i,n,o,s,r,a){return e(t,i,n,o,s,r,a)}):"object"==typeof module&&module.exports?module.exports=e(t,require("outlayer"),require("get-size"),require("desandro-matches-selector"),require("fizzy-ui-utils"),require("isotope/js/item"),require("isotope/js/layout-mode"),require("isotope/js/layout-modes/masonry"),require("isotope/js/layout-modes/fit-rows"),require("isotope/js/layout-modes/vertical")):t.Isotope=e(t,t.Outlayer,t.getSize,t.matchesSelector,t.fizzyUIUtils,t.Isotope.Item,t.Isotope.LayoutMode)}(window,function(t,e,i,n,o,s,r){function a(t,e){return function(i,n){for(var o=0;o<t.length;o++){var s=t[o],r=i.sortData[s],a=n.sortData[s];if(r>a||r<a){var u=void 0!==e[s]?e[s]:e,h=u?1:-1;return(r>a?1:-1)*h}}return 0}}var u=t.jQuery,h=String.prototype.trim?function(t){return t.trim()}:function(t){return t.replace(/^\s+|\s+$/g,"")},d=e.create("isotope",{layoutMode:"masonry",isJQueryFiltering:!0,sortAscending:!0});d.Item=s,d.LayoutMode=r;var l=d.prototype;l._create=function(){this.itemGUID=0,this._sorters={},this._getSorters(),e.prototype._create.call(this),this.modes={},this.filteredItems=this.items,this.sortHistory=["original-order"];for(var t in r.modes)this._initLayoutMode(t)},l.reloadItems=function(){this.itemGUID=0,e.prototype.reloadItems.call(this)},l._itemize=function(){for(var t=e.prototype._itemize.apply(this,arguments),i=0;i<t.length;i++){var n=t[i];n.id=this.itemGUID++}return this._updateItemsSortData(t),t},l._initLayoutMode=function(t){var e=r.modes[t],i=this.options[t]||{};this.options[t]=e.options?o.extend(e.options,i):i,this.modes[t]=new e(this)},l.layout=function(){return!this._isLayoutInited&&this._getOption("initLayout")?void this.arrange():void this._layout()},l._layout=function(){var t=this._getIsInstant();this._resetLayout(),this._manageStamps(),this.layoutItems(this.filteredItems,t),this._isLayoutInited=!0},l.arrange=function(t){this.option(t),this._getIsInstant();var e=this._filter(this.items);this.filteredItems=e.matches,this._bindArrangeComplete(),this._isInstant?this._noTransition(this._hideReveal,[e]):this._hideReveal(e),this._sort(),this._layout()},l._init=l.arrange,l._hideReveal=function(t){this.reveal(t.needReveal),this.hide(t.needHide)},l._getIsInstant=function(){var t=this._getOption("layoutInstant"),e=void 0!==t?t:!this._isLayoutInited;return this._isInstant=e,e},l._bindArrangeComplete=function(){function t(){e&&i&&n&&o.dispatchEvent("arrangeComplete",null,[o.filteredItems])}var e,i,n,o=this;this.once("layoutComplete",function(){e=!0,t()}),this.once("hideComplete",function(){i=!0,t()}),this.once("revealComplete",function(){n=!0,t()})},l._filter=function(t){var e=this.options.filter;e=e||"*";for(var i=[],n=[],o=[],s=this._getFilterTest(e),r=0;r<t.length;r++){var a=t[r];if(!a.isIgnored){var u=s(a);u&&i.push(a),u&&a.isHidden?n.push(a):u||a.isHidden||o.push(a)}}return{matches:i,needReveal:n,needHide:o}},l._getFilterTest=function(t){return u&&this.options.isJQueryFiltering?function(e){return u(e.element).is(t)}:"function"==typeof t?function(e){return t(e.element)}:function(e){return n(e.element,t)}},l.updateSortData=function(t){var e;t?(t=o.makeArray(t),e=this.getItems(t)):e=this.items,this._getSorters(),this._updateItemsSortData(e)},l._getSorters=function(){var t=this.options.getSortData;for(var e in t){var i=t[e];this._sorters[e]=f(i)}},l._updateItemsSortData=function(t){for(var e=t&&t.length,i=0;e&&i<e;i++){var n=t[i];n.updateSortData()}};var f=function(){function t(t){if("string"!=typeof t)return t;var i=h(t).split(" "),n=i[0],o=n.match(/^\[(.+)\]$/),s=o&&o[1],r=e(s,n),a=d.sortDataParsers[i[1]];
  2397. return t=a?function(t){return t&&a(r(t))}:function(t){return t&&r(t)}}function e(t,e){return t?function(e){return e.getAttribute(t)}:function(t){var i=t.querySelector(e);return i&&i.textContent}}return t}();d.sortDataParsers={parseInt:function(t){return parseInt(t,10)},parseFloat:function(t){return parseFloat(t)}},l._sort=function(){var t=this.options.sortBy;if(t){var e=[].concat.apply(t,this.sortHistory),i=a(e,this.options.sortAscending);this.filteredItems.sort(i),t!=this.sortHistory[0]&&this.sortHistory.unshift(t)}},l._mode=function(){var t=this.options.layoutMode,e=this.modes[t];if(!e)throw new Error("No layout mode: "+t);return e.options=this.options[t],e},l._resetLayout=function(){e.prototype._resetLayout.call(this),this._mode()._resetLayout()},l._getItemLayoutPosition=function(t){return this._mode()._getItemLayoutPosition(t)},l._manageStamp=function(t){this._mode()._manageStamp(t)},l._getContainerSize=function(){return this._mode()._getContainerSize()},l.needsResizeLayout=function(){return this._mode().needsResizeLayout()},l.appended=function(t){var e=this.addItems(t);if(e.length){var i=this._filterRevealAdded(e);this.filteredItems=this.filteredItems.concat(i)}},l.prepended=function(t){var e=this._itemize(t);if(e.length){this._resetLayout(),this._manageStamps();var i=this._filterRevealAdded(e);this.layoutItems(this.filteredItems),this.filteredItems=i.concat(this.filteredItems),this.items=e.concat(this.items)}},l._filterRevealAdded=function(t){var e=this._filter(t);return this.hide(e.needHide),this.reveal(e.matches),this.layoutItems(e.matches,!0),e.matches},l.insert=function(t){var e=this.addItems(t);if(e.length){var i,n,o=e.length;for(i=0;i<o;i++)n=e[i],this.element.appendChild(n.element);var s=this._filter(e).matches;for(i=0;i<o;i++)e[i].isLayoutInstant=!0;for(this.arrange(),i=0;i<o;i++)delete e[i].isLayoutInstant;this.reveal(s)}};var c=l.remove;return l.remove=function(t){t=o.makeArray(t);var e=this.getItems(t);c.call(this,t);for(var i=e&&e.length,n=0;i&&n<i;n++){var s=e[n];o.removeFrom(this.filteredItems,s)}},l.shuffle=function(){for(var t=0;t<this.items.length;t++){var e=this.items[t];e.sortData.random=Math.random()}this.options.sortBy="random",this._sort(),this._layout()},l._noTransition=function(t,e){var i=this.options.transitionDuration;this.options.transitionDuration=0;var n=t.apply(this,e);return this.options.transitionDuration=i,n},l.getFilteredItemElements=function(){return this.filteredItems.map(function(t){return t.element})},d});
  2398.  
  2399. /*!
  2400. * Packery layout mode PACKAGED v2.0.0
  2401. * sub-classes Packery
  2402. */
  2403.  
  2404. !function(a,b){"function"==typeof define&&define.amd?define("packery/js/rect",b):"object"==typeof module&&module.exports?module.exports=b():(a.Packery=a.Packery||{},a.Packery.Rect=b())}(window,function(){function a(b){for(var c in a.defaults)this[c]=a.defaults[c];for(c in b)this[c]=b[c]}a.defaults={x:0,y:0,width:0,height:0};var b=a.prototype;return b.contains=function(a){var b=a.width||0,c=a.height||0;return this.x<=a.x&&this.y<=a.y&&this.x+this.width>=a.x+b&&this.y+this.height>=a.y+c},b.overlaps=function(a){var b=this.x+this.width,c=this.y+this.height,d=a.x+a.width,e=a.y+a.height;return this.x<d&&b>a.x&&this.y<e&&c>a.y},b.getMaximalFreeRects=function(b){if(!this.overlaps(b))return!1;var c,d=[],e=this.x+this.width,f=this.y+this.height,g=b.x+b.width,h=b.y+b.height;return this.y<b.y&&(c=new a({x:this.x,y:this.y,width:this.width,height:b.y-this.y}),d.push(c)),e>g&&(c=new a({x:g,y:this.y,width:e-g,height:this.height}),d.push(c)),f>h&&(c=new a({x:this.x,y:h,width:this.width,height:f-h}),d.push(c)),this.x<b.x&&(c=new a({x:this.x,y:this.y,width:b.x-this.x,height:this.height}),d.push(c)),d},b.canFit=function(a){return this.width>=a.width&&this.height>=a.height},a}),function(a,b){if("function"==typeof define&&define.amd)define("packery/js/packer",["./rect"],b);else if("object"==typeof module&&module.exports)module.exports=b(require("./rect"));else{var c=a.Packery=a.Packery||{};c.Packer=b(c.Rect)}}(window,function(a){function b(a,b,c){this.width=a||0,this.height=b||0,this.sortDirection=c||"downwardLeftToRight",this.reset()}var c=b.prototype;c.reset=function(){this.spaces=[];var b=new a({x:0,y:0,width:this.width,height:this.height});this.spaces.push(b),this.sorter=d[this.sortDirection]||d.downwardLeftToRight},c.pack=function(a){for(var b=0;b<this.spaces.length;b++){var c=this.spaces[b];if(c.canFit(a)){this.placeInSpace(a,c);break}}},c.columnPack=function(a){for(var b=0;b<this.spaces.length;b++){var c=this.spaces[b],d=c.x<=a.x&&c.x+c.width>=a.x+a.width&&c.height>=a.height-.01;if(d){a.y=c.y,this.placed(a);break}}},c.rowPack=function(a){for(var b=0;b<this.spaces.length;b++){var c=this.spaces[b],d=c.y<=a.y&&c.y+c.height>=a.y+a.height&&c.width>=a.width-.01;if(d){a.x=c.x,this.placed(a);break}}},c.placeInSpace=function(a,b){a.x=b.x,a.y=b.y,this.placed(a)},c.placed=function(a){for(var b=[],c=0;c<this.spaces.length;c++){var d=this.spaces[c],e=d.getMaximalFreeRects(a);e?b.push.apply(b,e):b.push(d)}this.spaces=b,this.mergeSortSpaces()},c.mergeSortSpaces=function(){b.mergeRects(this.spaces),this.spaces.sort(this.sorter)},c.addSpace=function(a){this.spaces.push(a),this.mergeSortSpaces()},b.mergeRects=function(a){var b=0,c=a[b];a:for(;c;){for(var d=0,e=a[b+d];e;){if(e==c)d++;else{if(e.contains(c)){a.splice(b,1),c=a[b];continue a}c.contains(e)?a.splice(b+d,1):d++}e=a[b+d]}b++,c=a[b]}return a};var d={downwardLeftToRight:function(a,b){return a.y-b.y||a.x-b.x},rightwardTopToBottom:function(a,b){return a.x-b.x||a.y-b.y}};return b}),function(a,b){"function"==typeof define&&define.amd?define("packery/js/item",["outlayer/outlayer","./rect"],b):"object"==typeof module&&module.exports?module.exports=b(require("outlayer"),require("./rect")):a.Packery.Item=b(a.Outlayer,a.Packery.Rect)}(window,function(a,b){var c=document.documentElement.style,d="string"==typeof c.transform?"transform":"WebkitTransform",e=function(){a.Item.apply(this,arguments)},f=e.prototype=Object.create(a.Item.prototype),g=f._create;f._create=function(){g.call(this),this.rect=new b};var h=f.moveTo;return f.moveTo=function(a,b){var c=Math.abs(this.position.x-a),d=Math.abs(this.position.y-b),e=this.layout.dragItemCount&&!this.isPlacing&&!this.isTransitioning&&1>c&&1>d;return e?void this.goTo(a,b):void h.apply(this,arguments)},f.enablePlacing=function(){this.removeTransitionStyles(),this.isTransitioning&&d&&(this.element.style[d]="none"),this.isTransitioning=!1,this.getSize(),this.layout._setRectSize(this.element,this.rect),this.isPlacing=!0},f.disablePlacing=function(){this.isPlacing=!1},f.removeElem=function(){this.element.parentNode.removeChild(this.element),this.layout.packer.addSpace(this.rect),this.emitEvent("remove",[this])},f.showDropPlaceholder=function(){var a=this.dropPlaceholder;a||(a=this.dropPlaceholder=document.createElement("div"),a.className="packery-drop-placeholder",a.style.position="absolute"),a.style.width=this.size.width+"px",a.style.height=this.size.height+"px",this.positionDropPlaceholder(),this.layout.element.appendChild(a)},f.positionDropPlaceholder=function(){this.dropPlaceholder.style[d]="translate("+this.rect.x+"px, "+this.rect.y+"px)"},f.hideDropPlaceholder=function(){this.layout.element.removeChild(this.dropPlaceholder)},e}),function(a,b){"function"==typeof define&&define.amd?define("packery/js/packery",["get-size/get-size","outlayer/outlayer","./rect","./packer","./item"],b):"object"==typeof module&&module.exports?module.exports=b(require("get-size"),require("outlayer"),require("./rect"),require("./packer"),require("./item")):a.Packery=b(a.getSize,a.Outlayer,a.Packery.Rect,a.Packery.Packer,a.Packery.Item)}(window,function(a,b,c,d,e){function f(a,b){return a.position.y-b.position.y||a.position.x-b.position.x}function g(a,b){return a.position.x-b.position.x||a.position.y-b.position.y}function h(a,b){var c=b.x-a.x,d=b.y-a.y;return Math.sqrt(c*c+d*d)}c.prototype.canFit=function(a){return this.width>=a.width-1&&this.height>=a.height-1};var i=b.create("packery");i.Item=e;var j=i.prototype;j._create=function(){b.prototype._create.call(this),this.packer=new d,this.shiftPacker=new d,this.isEnabled=!0,this.dragItemCount=0;var a=this;this.handleDraggabilly={dragStart:function(){a.itemDragStart(this.element)},dragMove:function(){a.itemDragMove(this.element,this.position.x,this.position.y)},dragEnd:function(){a.itemDragEnd(this.element)}},this.handleUIDraggable={start:function(b,c){c&&a.itemDragStart(b.currentTarget)},drag:function(b,c){c&&a.itemDragMove(b.currentTarget,c.position.left,c.position.top)},stop:function(b,c){c&&a.itemDragEnd(b.currentTarget)}}},j._resetLayout=function(){this.getSize(),this._getMeasurements();var a,b,c;this._getOption("horizontal")?(a=1/0,b=this.size.innerHeight+this.gutter,c="rightwardTopToBottom"):(a=this.size.innerWidth+this.gutter,b=1/0,c="downwardLeftToRight"),this.packer.width=this.shiftPacker.width=a,this.packer.height=this.shiftPacker.height=b,this.packer.sortDirection=this.shiftPacker.sortDirection=c,this.packer.reset(),this.maxY=0,this.maxX=0},j._getMeasurements=function(){this._getMeasurement("columnWidth","width"),this._getMeasurement("rowHeight","height"),this._getMeasurement("gutter","width")},j._getItemLayoutPosition=function(a){if(this._setRectSize(a.element,a.rect),this.isShifting||this.dragItemCount>0){var b=this._getPackMethod();this.packer[b](a.rect)}else this.packer.pack(a.rect);return this._setMaxXY(a.rect),a.rect},j.shiftLayout=function(){this.isShifting=!0,this.layout(),delete this.isShifting},j._getPackMethod=function(){return this._getOption("horizontal")?"rowPack":"columnPack"},j._setMaxXY=function(a){this.maxX=Math.max(a.x+a.width,this.maxX),this.maxY=Math.max(a.y+a.height,this.maxY)},j._setRectSize=function(b,c){var d=a(b),e=d.outerWidth,f=d.outerHeight;(e||f)&&(e=this._applyGridGutter(e,this.columnWidth),f=this._applyGridGutter(f,this.rowHeight)),c.width=Math.min(e,this.packer.width),c.height=Math.min(f,this.packer.height)},j._applyGridGutter=function(a,b){if(!b)return a+this.gutter;b+=this.gutter;var c=a%b,d=c&&1>c?"round":"ceil";return a=Math[d](a/b)*b},j._getContainerSize=function(){return this._getOption("horizontal")?{width:this.maxX-this.gutter}:{height:this.maxY-this.gutter}},j._manageStamp=function(a){var b,d=this.getItem(a);if(d&&d.isPlacing)b=d.rect;else{var e=this._getElementOffset(a);b=new c({x:this._getOption("originLeft")?e.left:e.right,y:this._getOption("originTop")?e.top:e.bottom})}this._setRectSize(a,b),this.packer.placed(b),this._setMaxXY(b)},j.sortItemsByPosition=function(){var a=this._getOption("horizontal")?g:f;this.items.sort(a)},j.fit=function(a,b,c){var d=this.getItem(a);d&&(this.stamp(d.element),d.enablePlacing(),this.updateShiftTargets(d),b=void 0===b?d.rect.x:b,c=void 0===c?d.rect.y:c,this.shift(d,b,c),this._bindFitEvents(d),d.moveTo(d.rect.x,d.rect.y),this.shiftLayout(),this.unstamp(d.element),this.sortItemsByPosition(),d.disablePlacing())},j._bindFitEvents=function(a){function b(){d++,2==d&&c.dispatchEvent("fitComplete",null,[a])}var c=this,d=0;a.once("layout",b),this.once("layoutComplete",b)},j.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&(this.options.shiftPercentResize?this.resizeShiftPercentLayout():this.layout())},j.needsResizeLayout=function(){var b=a(this.element),c=this._getOption("horizontal")?"innerHeight":"innerWidth";return b[c]!=this.size[c]},j.resizeShiftPercentLayout=function(){var b=this._getItemsForLayout(this.items),c=this._getOption("horizontal"),d=c?"y":"x",e=c?"height":"width",f=c?"rowHeight":"columnWidth",g=c?"innerHeight":"innerWidth",h=this[f];if(h=h&&h+this.gutter){this._getMeasurements();var i=this[f]+this.gutter;b.forEach(function(a){var b=Math.round(a.rect[d]/h);a.rect[d]=b*i})}else{var j=a(this.element)[g]+this.gutter,k=this.packer[e];b.forEach(function(a){a.rect[d]=a.rect[d]/k*j})}this.shiftLayout()},j.itemDragStart=function(a){if(this.isEnabled){this.stamp(a);var b=this.getItem(a);b&&(b.enablePlacing(),b.showDropPlaceholder(),this.dragItemCount++,this.updateShiftTargets(b))}},j.updateShiftTargets=function(a){this.shiftPacker.reset(),this._getBoundingRect();var b=this._getOption("originLeft"),d=this._getOption("originTop");this.stamps.forEach(function(a){var e=this.getItem(a);if(!e||!e.isPlacing){var f=this._getElementOffset(a),g=new c({x:b?f.left:f.right,y:d?f.top:f.bottom});this._setRectSize(a,g),this.shiftPacker.placed(g)}},this);var e=this._getOption("horizontal"),f=e?"rowHeight":"columnWidth",g=e?"height":"width";this.shiftTargetKeys=[],this.shiftTargets=[];var h,i=this[f];if(i=i&&i+this.gutter){var j=Math.ceil(a.rect[g]/i),k=Math.floor((this.shiftPacker[g]+this.gutter)/i);h=(k-j)*i;for(var l=0;k>l;l++)this._addShiftTarget(l*i,0,h)}else h=this.shiftPacker[g]+this.gutter-a.rect[g],this._addShiftTarget(0,0,h);var m=this._getItemsForLayout(this.items),n=this._getPackMethod();m.forEach(function(a){var b=a.rect;this._setRectSize(a.element,b),this.shiftPacker[n](b),this._addShiftTarget(b.x,b.y,h);var c=e?b.x+b.width:b.x,d=e?b.y:b.y+b.height;if(this._addShiftTarget(c,d,h),i)for(var f=Math.round(b[g]/i),j=1;f>j;j++){var k=e?c:b.x+i*j,l=e?b.y+i*j:d;this._addShiftTarget(k,l,h)}},this)},j._addShiftTarget=function(a,b,c){var d=this._getOption("horizontal")?b:a;if(!(0!==d&&d>c)){var e=a+","+b,f=-1!=this.shiftTargetKeys.indexOf(e);f||(this.shiftTargetKeys.push(e),this.shiftTargets.push({x:a,y:b}))}},j.shift=function(a,b,c){var d,e=1/0,f={x:b,y:c};this.shiftTargets.forEach(function(a){var b=h(a,f);e>b&&(d=a,e=b)}),a.rect.x=d.x,a.rect.y=d.y};var k=120;j.itemDragMove=function(a,b,c){function d(){f.shift(e,b,c),e.positionDropPlaceholder(),f.layout()}var e=this.isEnabled&&this.getItem(a);if(e){b-=this.size.paddingLeft,c-=this.size.paddingTop;var f=this,g=new Date;this._itemDragTime&&g-this._itemDragTime<k?(clearTimeout(this.dragTimeout),this.dragTimeout=setTimeout(d,k)):(d(),this._itemDragTime=g)}},j.itemDragEnd=function(a){function b(){d++,2==d&&(c.element.classList.remove("is-positioning-post-drag"),c.hideDropPlaceholder(),e.dispatchEvent("dragItemPositioned",null,[c]))}var c=this.isEnabled&&this.getItem(a);if(c){clearTimeout(this.dragTimeout),c.element.classList.add("is-positioning-post-drag");var d=0,e=this;c.once("layout",b),this.once("layoutComplete",b),c.moveTo(c.rect.x,c.rect.y),this.layout(),this.dragItemCount=Math.max(0,this.dragItemCount-1),this.sortItemsByPosition(),c.disablePlacing(),this.unstamp(c.element)}},j.bindDraggabillyEvents=function(a){this._bindDraggabillyEvents(a,"on")},j.unbindDraggabillyEvents=function(a){this._bindDraggabillyEvents(a,"off")},j._bindDraggabillyEvents=function(a,b){var c=this.handleDraggabilly;a[b]("dragStart",c.dragStart),a[b]("dragMove",c.dragMove),a[b]("dragEnd",c.dragEnd)},j.bindUIDraggableEvents=function(a){this._bindUIDraggableEvents(a,"on")},j.unbindUIDraggableEvents=function(a){this._bindUIDraggableEvents(a,"off")},j._bindUIDraggableEvents=function(a,b){var c=this.handleUIDraggable;a[b]("dragstart",c.start)[b]("drag",c.drag)[b]("dragstop",c.stop)};var l=j.destroy;return j.destroy=function(){l.apply(this,arguments),this.isEnabled=!1},i.Rect=c,i.Packer=d,i}),function(a,b){"function"==typeof define&&define.amd?define(["isotope/js/layout-mode","packery/js/packery"],b):"object"==typeof module&&module.exports?module.exports=b(require("isotope-layout/js/layout-mode"),require("packery")):b(a.Isotope.LayoutMode,a.Packery)}(window,function(a,b){var c=a.create("packery"),d=c.prototype,e={_getElementOffset:!0,_getMeasurement:!0};for(var f in b.prototype)e[f]||(d[f]=b.prototype[f]);var g=d._resetLayout;d._resetLayout=function(){this.packer=this.packer||new b.Packer,this.shiftPacker=this.shiftPacker||new b.Packer,g.apply(this,arguments)};var h=d._getItemLayoutPosition;d._getItemLayoutPosition=function(a){return a.rect=a.rect||new b.Rect,h.call(this,a)};var i=d.needsResizeLayout;d.needsResizeLayout=function(){return this._getOption("horizontal")?this.needsVerticalResizeLayout():i.call(this)};var j=d._getOption;return d._getOption=function(a){return"horizontal"==a?void 0!==this.options.isHorizontal?this.options.isHorizontal:this.options.horizontal:j.apply(this.isotope,arguments)},c});
  2405.  
  2406. /*!
  2407. Waypoints - 3.1.1
  2408. Copyright © 2011-2015 Caleb Troughton
  2409. Licensed under the MIT license.
  2410. https://github.com/imakewebthings/waypoints/blog/master/licenses.txt
  2411. */
  2412. !function(){"use strict";function t(o){if(!o)throw new Error("No options passed to Waypoint constructor");if(!o.element)throw new Error("No element option passed to Waypoint constructor");if(!o.handler)throw new Error("No handler option passed to Waypoint constructor");this.key="waypoint-"+e,this.options=t.Adapter.extend({},t.defaults,o),this.element=this.options.element,this.adapter=new t.Adapter(this.element),this.callback=o.handler,this.axis=this.options.horizontal?"horizontal":"vertical",this.enabled=this.options.enabled,this.triggerPoint=null,this.group=t.Group.findOrCreate({name:this.options.group,axis:this.axis}),this.context=t.Context.findOrCreateByElement(this.options.context),t.offsetAliases[this.options.offset]&&(this.options.offset=t.offsetAliases[this.options.offset]),this.group.add(this),this.context.add(this),i[this.key]=this,e+=1}var e=0,i={};t.prototype.queueTrigger=function(t){this.group.queueTrigger(this,t)},t.prototype.trigger=function(t){this.enabled&&this.callback&&this.callback.apply(this,t)},t.prototype.destroy=function(){this.context.remove(this),this.group.remove(this),delete i[this.key]},t.prototype.disable=function(){return this.enabled=!1,this},t.prototype.enable=function(){return this.context.refresh(),this.enabled=!0,this},t.prototype.next=function(){return this.group.next(this)},t.prototype.previous=function(){return this.group.previous(this)},t.invokeAll=function(t){var e=[];for(var o in i)e.push(i[o]);for(var n=0,r=e.length;r>n;n++)e[n][t]()},t.destroyAll=function(){t.invokeAll("destroy")},t.disableAll=function(){t.invokeAll("disable")},t.enableAll=function(){t.invokeAll("enable")},t.refreshAll=function(){t.Context.refreshAll()},t.viewportHeight=function(){return window.innerHeight||document.documentElement.clientHeight},t.viewportWidth=function(){return document.documentElement.clientWidth},t.adapters=[],t.defaults={context:window,continuous:!0,enabled:!0,group:"default",horizontal:!1,offset:0},t.offsetAliases={"bottom-in-view":function(){return this.context.innerHeight()-this.adapter.outerHeight()},"right-in-view":function(){return this.context.innerWidth()-this.adapter.outerWidth()}},window.Waypoint=t}(),function(){"use strict";function t(t){window.setTimeout(t,1e3/60)}function e(t){this.element=t,this.Adapter=n.Adapter,this.adapter=new this.Adapter(t),this.key="waypoint-context-"+i,this.didScroll=!1,this.didResize=!1,this.oldScroll={x:this.adapter.scrollLeft(),y:this.adapter.scrollTop()},this.waypoints={vertical:{},horizontal:{}},t.waypointContextKey=this.key,o[t.waypointContextKey]=this,i+=1,this.createThrottledScrollHandler(),this.createThrottledResizeHandler()}var i=0,o={},n=window.Waypoint,r=window.onload;e.prototype.add=function(t){var e=t.options.horizontal?"horizontal":"vertical";this.waypoints[e][t.key]=t,this.refresh()},e.prototype.checkEmpty=function(){var t=this.Adapter.isEmptyObject(this.waypoints.horizontal),e=this.Adapter.isEmptyObject(this.waypoints.vertical);t&&e&&(this.adapter.off(".waypoints"),delete o[this.key])},e.prototype.createThrottledResizeHandler=function(){function t(){e.handleResize(),e.didResize=!1}var e=this;this.adapter.on("resize.waypoints",function(){e.didResize||(e.didResize=!0,n.requestAnimationFrame(t))})},e.prototype.createThrottledScrollHandler=function(){function t(){e.handleScroll(),e.didScroll=!1}var e=this;this.adapter.on("scroll.waypoints",function(){(!e.didScroll||n.isTouch)&&(e.didScroll=!0,n.requestAnimationFrame(t))})},e.prototype.handleResize=function(){n.Context.refreshAll()},e.prototype.handleScroll=function(){var t={},e={horizontal:{newScroll:this.adapter.scrollLeft(),oldScroll:this.oldScroll.x,forward:"right",backward:"left"},vertical:{newScroll:this.adapter.scrollTop(),oldScroll:this.oldScroll.y,forward:"down",backward:"up"}};for(var i in e){var o=e[i],n=o.newScroll>o.oldScroll,r=n?o.forward:o.backward;for(var s in this.waypoints[i]){var a=this.waypoints[i][s],l=o.oldScroll<a.triggerPoint,h=o.newScroll>=a.triggerPoint,p=l&&h,u=!l&&!h;(p||u)&&(a.queueTrigger(r),t[a.group.id]=a.group)}}for(var c in t)t[c].flushTriggers();this.oldScroll={x:e.horizontal.newScroll,y:e.vertical.newScroll}},e.prototype.innerHeight=function(){return this.element==this.element.window?n.viewportHeight():this.adapter.innerHeight()},e.prototype.remove=function(t){delete this.waypoints[t.axis][t.key],this.checkEmpty()},e.prototype.innerWidth=function(){return this.element==this.element.window?n.viewportWidth():this.adapter.innerWidth()},e.prototype.destroy=function(){var t=[];for(var e in this.waypoints)for(var i in this.waypoints[e])t.push(this.waypoints[e][i]);for(var o=0,n=t.length;n>o;o++)t[o].destroy()},e.prototype.refresh=function(){var t,e=this.element==this.element.window,i=this.adapter.offset(),o={};this.handleScroll(),t={horizontal:{contextOffset:e?0:i.left,contextScroll:e?0:this.oldScroll.x,contextDimension:this.innerWidth(),oldScroll:this.oldScroll.x,forward:"right",backward:"left",offsetProp:"left"},vertical:{contextOffset:e?0:i.top,contextScroll:e?0:this.oldScroll.y,contextDimension:this.innerHeight(),oldScroll:this.oldScroll.y,forward:"down",backward:"up",offsetProp:"top"}};for(var n in t){var r=t[n];for(var s in this.waypoints[n]){var a,l,h,p,u,c=this.waypoints[n][s],d=c.options.offset,f=c.triggerPoint,w=0,y=null==f;c.element!==c.element.window&&(w=c.adapter.offset()[r.offsetProp]),"function"==typeof d?d=d.apply(c):"string"==typeof d&&(d=parseFloat(d),c.options.offset.indexOf("%")>-1&&(d=Math.ceil(r.contextDimension*d/100))),a=r.contextScroll-r.contextOffset,c.triggerPoint=w+a-d,l=f<r.oldScroll,h=c.triggerPoint>=r.oldScroll,p=l&&h,u=!l&&!h,!y&&p?(c.queueTrigger(r.backward),o[c.group.id]=c.group):!y&&u?(c.queueTrigger(r.forward),o[c.group.id]=c.group):y&&r.oldScroll>=c.triggerPoint&&(c.queueTrigger(r.forward),o[c.group.id]=c.group)}}for(var g in o)o[g].flushTriggers();return this},e.findOrCreateByElement=function(t){return e.findByElement(t)||new e(t)},e.refreshAll=function(){for(var t in o)o[t].refresh()},e.findByElement=function(t){return o[t.waypointContextKey]},window.onload=function(){r&&r(),e.refreshAll()},n.requestAnimationFrame=function(e){var i=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||t;i.call(window,e)},n.Context=e}(),function(){"use strict";function t(t,e){return t.triggerPoint-e.triggerPoint}function e(t,e){return e.triggerPoint-t.triggerPoint}function i(t){this.name=t.name,this.axis=t.axis,this.id=this.name+"-"+this.axis,this.waypoints=[],this.clearTriggerQueues(),o[this.axis][this.name]=this}var o={vertical:{},horizontal:{}},n=window.Waypoint;i.prototype.add=function(t){this.waypoints.push(t)},i.prototype.clearTriggerQueues=function(){this.triggerQueues={up:[],down:[],left:[],right:[]}},i.prototype.flushTriggers=function(){for(var i in this.triggerQueues){var o=this.triggerQueues[i],n="up"===i||"left"===i;o.sort(n?e:t);for(var r=0,s=o.length;s>r;r+=1){var a=o[r];(a.options.continuous||r===o.length-1)&&a.trigger([i])}}this.clearTriggerQueues()},i.prototype.next=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints),o=i===this.waypoints.length-1;return o?null:this.waypoints[i+1]},i.prototype.previous=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints);return i?this.waypoints[i-1]:null},i.prototype.queueTrigger=function(t,e){this.triggerQueues[e].push(t)},i.prototype.remove=function(t){var e=n.Adapter.inArray(t,this.waypoints);e>-1&&this.waypoints.splice(e,1)},i.prototype.first=function(){return this.waypoints[0]},i.prototype.last=function(){return this.waypoints[this.waypoints.length-1]},i.findOrCreate=function(t){return o[t.axis][t.name]||new i(t)},n.Group=i}(),function(){"use strict";function t(t){this.$element=e(t)}var e=window.jQuery,i=window.Waypoint;e.each(["innerHeight","innerWidth","off","offset","on","outerHeight","outerWidth","scrollLeft","scrollTop"],function(e,i){t.prototype[i]=function(){var t=Array.prototype.slice.call(arguments);return this.$element[i].apply(this.$element,t)}}),e.each(["extend","inArray","isEmptyObject"],function(i,o){t[o]=e[o]}),i.adapters.push({name:"jquery",Adapter:t}),i.Adapter=t}(),function(){"use strict";function t(t){return function(){var i=[],o=arguments[0];return t.isFunction(arguments[0])&&(o=t.extend({},arguments[1]),o.handler=arguments[0]),this.each(function(){var n=t.extend({},o,{element:this});"string"==typeof n.context&&(n.context=t(this).closest(n.context)[0]),i.push(new e(n))}),i}}var e=window.Waypoint;window.jQuery&&(window.jQuery.fn.waypoint=t(window.jQuery)),window.Zepto&&(window.Zepto.fn.waypoint=t(window.Zepto))}();
  2413.  
  2414.  
  2415. /*
  2416. * jQuery Browser Plugin 0.0.6
  2417. * https://github.com/gabceb/jquery-browser-plugin
  2418. *
  2419. * Original jquery-browser code Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors
  2420. * http://jquery.org/license
  2421. *
  2422. * Modifications Copyright 2014 Gabriel Cebrian
  2423. * https://github.com/gabceb
  2424. *
  2425. * Released under the MIT license
  2426. */
  2427. !function(a,b){"use strict";var c,d;if(a.uaMatch=function(a){a=a.toLowerCase();var b=/(opr)[\/]([\w.]+)/.exec(a)||/(chrome)[ \/]([\w.]+)/.exec(a)||/(version)[ \/]([\w.]+).*(safari)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("trident")>=0&&/(rv)(?::| )([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[],c=/(ipad)/.exec(a)||/(iphone)/.exec(a)||/(android)/.exec(a)||/(windows phone)/.exec(a)||/(win)/.exec(a)||/(mac)/.exec(a)||/(linux)/.exec(a)||/(cros)/i.exec(a)||[];return{browser:b[3]||b[1]||"",version:b[2]||"0",platform:c[0]||""}},c=a.uaMatch(b.navigator.userAgent),d={},c.browser&&(d[c.browser]=!0,d.version=c.version,d.versionNumber=parseInt(c.version)),c.platform&&(d[c.platform]=!0),(d.android||d.ipad||d.iphone||d["windows phone"])&&(d.mobile=!0),(d.cros||d.mac||d.linux||d.win)&&(d.desktop=!0),(d.chrome||d.opr||d.safari)&&(d.webkit=!0),d.rv){var e="msie";c.browser=e,d[e]=!0}if(d.opr){var f="opera";c.browser=f,d[f]=!0}if(d.safari&&d.android){var g="android";c.browser=g,d[g]=!0}d.name=c.browser,d.platform=c.platform,a.browser=d}(jQuery,window);
  2428.  
  2429. /*Vimeo Frogaloop API for videos*/
  2430. var Froogaloop=function(){function e(a){return new e.fn.init(a)}function g(a,c,b){if(!b.contentWindow.postMessage)return!1;a=JSON.stringify({method:a,value:c});b.contentWindow.postMessage(a,h)}function l(a){var c,b;try{c=JSON.parse(a.data),b=c.event||c.method}catch(e){}"ready"!=b||k||(k=!0);if(!/^https?:\/\/player.vimeo.com/.test(a.origin))return!1;"*"===h&&(h=a.origin);a=c.value;var m=c.data,f=""===f?null:c.player_id;c=f?d[f][b]:d[b];b=[];if(!c)return!1;void 0!==a&&b.push(a);m&&b.push(m);f&&b.push(f);
  2431. return 0<b.length?c.apply(null,b):c.call()}function n(a,c,b){b?(d[b]||(d[b]={}),d[b][a]=c):d[a]=c}var d={},k=!1,h="*";e.fn=e.prototype={element:null,init:function(a){"string"===typeof a&&(a=document.getElementById(a));this.element=a;return this},api:function(a,c){if(!this.element||!a)return!1;var b=this.element,d=""!==b.id?b.id:null,e=c&&c.constructor&&c.call&&c.apply?null:c,f=c&&c.constructor&&c.call&&c.apply?c:null;f&&n(a,f,d);g(a,e,b);return this},addEvent:function(a,c){if(!this.element)return!1;
  2432. var b=this.element,d=""!==b.id?b.id:null;n(a,c,d);"ready"!=a?g("addEventListener",a,b):"ready"==a&&k&&c.call(null,d);return this},removeEvent:function(a){if(!this.element)return!1;var c=this.element,b=""!==c.id?c.id:null;a:{if(b&&d[b]){if(!d[b][a]){b=!1;break a}d[b][a]=null}else{if(!d[a]){b=!1;break a}d[a]=null}b=!0}"ready"!=a&&b&&g("removeEventListener",a,c)}};e.fn.init.prototype=e.fn;window.addEventListener?window.addEventListener("message",l,!1):window.attachEvent("onmessage",l);return window.Froogaloop=
  2433. window.$f=e}();
  2434.  
  2435.  
  2436. // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ + http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating
  2437. // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel. can be removed if IE9 is no longer supported or all parallax scripts are gone MIT license
  2438. (function(){var lastTime=0;var vendors=['ms','moz','webkit','o'];for(var x=0;x<vendors.length&&!window.requestAnimationFrame;++x){window.requestAnimationFrame=window[vendors[x]+'RequestAnimationFrame'];window.cancelAnimationFrame=window[vendors[x]+'CancelAnimationFrame']||window[vendors[x]+'CancelRequestAnimationFrame']}if(!window.requestAnimationFrame)window.requestAnimationFrame=function(callback,element){var currTime=new Date().getTime();var timeToCall=Math.max(0,16-(currTime-lastTime));var id=window.setTimeout(function(){callback(currTime+timeToCall)},timeToCall);lastTime=currTime+timeToCall;return id};if(!window.cancelAnimationFrame)window.cancelAnimationFrame=function(id){clearTimeout(id)}}());
  2439.  
  2440. jQuery.expr[':'].regex = function(elem, index, match) {
  2441. var matchParams = match[3].split(','),
  2442. validLabels = /^(data|css):/,
  2443. attr = {
  2444. method: matchParams[0].match(validLabels) ?
  2445. matchParams[0].split(':')[0] : 'attr',
  2446. property: matchParams.shift().replace(validLabels,'')
  2447. },
  2448. regexFlags = 'ig',
  2449. regex = new RegExp(matchParams.join('').replace(/^\s+|\s+$/g,''), regexFlags);
  2450. return regex.test(jQuery(elem)[attr.method](attr.property));
  2451. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement