{"version":3,"file":"flickity-imagesloaded-BPYrZHYu.js","sources":["../../../node_modules/imagesloaded/imagesloaded.js","../../../node_modules/flickity-imagesloaded/flickity-imagesloaded.js"],"sourcesContent":["/*!\n * imagesLoaded v4.1.4\n * JavaScript is all like \"You images are done yet or what?\"\n * MIT License\n */\n\n( function( window, factory ) { 'use strict';\n  // universal module definition\n\n  /*global define: false, module: false, require: false */\n\n  if ( typeof define == 'function' && define.amd ) {\n    // AMD\n    define( [\n      'ev-emitter/ev-emitter'\n    ], function( EvEmitter ) {\n      return factory( window, EvEmitter );\n    });\n  } else if ( typeof module == 'object' && module.exports ) {\n    // CommonJS\n    module.exports = factory(\n      window,\n      require('ev-emitter')\n    );\n  } else {\n    // browser global\n    window.imagesLoaded = factory(\n      window,\n      window.EvEmitter\n    );\n  }\n\n})( typeof window !== 'undefined' ? window : this,\n\n// --------------------------  factory -------------------------- //\n\nfunction factory( window, EvEmitter ) {\n\n'use strict';\n\nvar $ = window.jQuery;\nvar console = window.console;\n\n// -------------------------- helpers -------------------------- //\n\n// extend objects\nfunction extend( a, b ) {\n  for ( var prop in b ) {\n    a[ prop ] = b[ prop ];\n  }\n  return a;\n}\n\nvar arraySlice = Array.prototype.slice;\n\n// turn element or nodeList into an array\nfunction makeArray( obj ) {\n  if ( Array.isArray( obj ) ) {\n    // use object if already an array\n    return obj;\n  }\n\n  var isArrayLike = typeof obj == 'object' && typeof obj.length == 'number';\n  if ( isArrayLike ) {\n    // convert nodeList to array\n    return arraySlice.call( obj );\n  }\n\n  // array of single index\n  return [ obj ];\n}\n\n// -------------------------- imagesLoaded -------------------------- //\n\n/**\n * @param {Array, Element, NodeList, String} elem\n * @param {Object or Function} options - if function, use as callback\n * @param {Function} onAlways - callback function\n */\nfunction ImagesLoaded( elem, options, onAlways ) {\n  // coerce ImagesLoaded() without new, to be new ImagesLoaded()\n  if ( !( this instanceof ImagesLoaded ) ) {\n    return new ImagesLoaded( elem, options, onAlways );\n  }\n  // use elem as selector string\n  var queryElem = elem;\n  if ( typeof elem == 'string' ) {\n    queryElem = document.querySelectorAll( elem );\n  }\n  // bail if bad element\n  if ( !queryElem ) {\n    console.error( 'Bad element for imagesLoaded ' + ( queryElem || elem ) );\n    return;\n  }\n\n  this.elements = makeArray( queryElem );\n  this.options = extend( {}, this.options );\n  // shift arguments if no options set\n  if ( typeof options == 'function' ) {\n    onAlways = options;\n  } else {\n    extend( this.options, options );\n  }\n\n  if ( onAlways ) {\n    this.on( 'always', onAlways );\n  }\n\n  this.getImages();\n\n  if ( $ ) {\n    // add jQuery Deferred object\n    this.jqDeferred = new $.Deferred();\n  }\n\n  // HACK check async to allow time to bind listeners\n  setTimeout( this.check.bind( this ) );\n}\n\nImagesLoaded.prototype = Object.create( EvEmitter.prototype );\n\nImagesLoaded.prototype.options = {};\n\nImagesLoaded.prototype.getImages = function() {\n  this.images = [];\n\n  // filter & find items if we have an item selector\n  this.elements.forEach( this.addElementImages, this );\n};\n\n/**\n * @param {Node} element\n */\nImagesLoaded.prototype.addElementImages = function( elem ) {\n  // filter siblings\n  if ( elem.nodeName == 'IMG' ) {\n    this.addImage( elem );\n  }\n  // get background image on element\n  if ( this.options.background === true ) {\n    this.addElementBackgroundImages( elem );\n  }\n\n  // find children\n  // no non-element nodes, #143\n  var nodeType = elem.nodeType;\n  if ( !nodeType || !elementNodeTypes[ nodeType ] ) {\n    return;\n  }\n  var childImgs = elem.querySelectorAll('img');\n  // concat childElems to filterFound array\n  for ( var i=0; i < childImgs.length; i++ ) {\n    var img = childImgs[i];\n    this.addImage( img );\n  }\n\n  // get child background images\n  if ( typeof this.options.background == 'string' ) {\n    var children = elem.querySelectorAll( this.options.background );\n    for ( i=0; i < children.length; i++ ) {\n      var child = children[i];\n      this.addElementBackgroundImages( child );\n    }\n  }\n};\n\nvar elementNodeTypes = {\n  1: true,\n  9: true,\n  11: true\n};\n\nImagesLoaded.prototype.addElementBackgroundImages = function( elem ) {\n  var style = getComputedStyle( elem );\n  if ( !style ) {\n    // Firefox returns null if in a hidden iframe https://bugzil.la/548397\n    return;\n  }\n  // get url inside url(\"...\")\n  var reURL = /url\\((['\"])?(.*?)\\1\\)/gi;\n  var matches = reURL.exec( style.backgroundImage );\n  while ( matches !== null ) {\n    var url = matches && matches[2];\n    if ( url ) {\n      this.addBackground( url, elem );\n    }\n    matches = reURL.exec( style.backgroundImage );\n  }\n};\n\n/**\n * @param {Image} img\n */\nImagesLoaded.prototype.addImage = function( img ) {\n  var loadingImage = new LoadingImage( img );\n  this.images.push( loadingImage );\n};\n\nImagesLoaded.prototype.addBackground = function( url, elem ) {\n  var background = new Background( url, elem );\n  this.images.push( background );\n};\n\nImagesLoaded.prototype.check = function() {\n  var _this = this;\n  this.progressedCount = 0;\n  this.hasAnyBroken = false;\n  // complete if no images\n  if ( !this.images.length ) {\n    this.complete();\n    return;\n  }\n\n  function onProgress( image, elem, message ) {\n    // HACK - Chrome triggers event before object properties have changed. #83\n    setTimeout( function() {\n      _this.progress( image, elem, message );\n    });\n  }\n\n  this.images.forEach( function( loadingImage ) {\n    loadingImage.once( 'progress', onProgress );\n    loadingImage.check();\n  });\n};\n\nImagesLoaded.prototype.progress = function( image, elem, message ) {\n  this.progressedCount++;\n  this.hasAnyBroken = this.hasAnyBroken || !image.isLoaded;\n  // progress event\n  this.emitEvent( 'progress', [ this, image, elem ] );\n  if ( this.jqDeferred && this.jqDeferred.notify ) {\n    this.jqDeferred.notify( this, image );\n  }\n  // check if completed\n  if ( this.progressedCount == this.images.length ) {\n    this.complete();\n  }\n\n  if ( this.options.debug && console ) {\n    console.log( 'progress: ' + message, image, elem );\n  }\n};\n\nImagesLoaded.prototype.complete = function() {\n  var eventName = this.hasAnyBroken ? 'fail' : 'done';\n  this.isComplete = true;\n  this.emitEvent( eventName, [ this ] );\n  this.emitEvent( 'always', [ this ] );\n  if ( this.jqDeferred ) {\n    var jqMethod = this.hasAnyBroken ? 'reject' : 'resolve';\n    this.jqDeferred[ jqMethod ]( this );\n  }\n};\n\n// --------------------------  -------------------------- //\n\nfunction LoadingImage( img ) {\n  this.img = img;\n}\n\nLoadingImage.prototype = Object.create( EvEmitter.prototype );\n\nLoadingImage.prototype.check = function() {\n  // If complete is true and browser supports natural sizes,\n  // try to check for image status manually.\n  var isComplete = this.getIsImageComplete();\n  if ( isComplete ) {\n    // report based on naturalWidth\n    this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' );\n    return;\n  }\n\n  // If none of the checks above matched, simulate loading on detached element.\n  this.proxyImage = new Image();\n  this.proxyImage.addEventListener( 'load', this );\n  this.proxyImage.addEventListener( 'error', this );\n  // bind to image as well for Firefox. #191\n  this.img.addEventListener( 'load', this );\n  this.img.addEventListener( 'error', this );\n  this.proxyImage.src = this.img.src;\n};\n\nLoadingImage.prototype.getIsImageComplete = function() {\n  // check for non-zero, non-undefined naturalWidth\n  // fixes Safari+InfiniteScroll+Masonry bug infinite-scroll#671\n  return this.img.complete && this.img.naturalWidth;\n};\n\nLoadingImage.prototype.confirm = function( isLoaded, message ) {\n  this.isLoaded = isLoaded;\n  this.emitEvent( 'progress', [ this, this.img, message ] );\n};\n\n// ----- events ----- //\n\n// trigger specified handler for event type\nLoadingImage.prototype.handleEvent = function( event ) {\n  var method = 'on' + event.type;\n  if ( this[ method ] ) {\n    this[ method ]( event );\n  }\n};\n\nLoadingImage.prototype.onload = function() {\n  this.confirm( true, 'onload' );\n  this.unbindEvents();\n};\n\nLoadingImage.prototype.onerror = function() {\n  this.confirm( false, 'onerror' );\n  this.unbindEvents();\n};\n\nLoadingImage.prototype.unbindEvents = function() {\n  this.proxyImage.removeEventListener( 'load', this );\n  this.proxyImage.removeEventListener( 'error', this );\n  this.img.removeEventListener( 'load', this );\n  this.img.removeEventListener( 'error', this );\n};\n\n// -------------------------- Background -------------------------- //\n\nfunction Background( url, element ) {\n  this.url = url;\n  this.element = element;\n  this.img = new Image();\n}\n\n// inherit LoadingImage prototype\nBackground.prototype = Object.create( LoadingImage.prototype );\n\nBackground.prototype.check = function() {\n  this.img.addEventListener( 'load', this );\n  this.img.addEventListener( 'error', this );\n  this.img.src = this.url;\n  // check if image is already complete\n  var isComplete = this.getIsImageComplete();\n  if ( isComplete ) {\n    this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' );\n    this.unbindEvents();\n  }\n};\n\nBackground.prototype.unbindEvents = function() {\n  this.img.removeEventListener( 'load', this );\n  this.img.removeEventListener( 'error', this );\n};\n\nBackground.prototype.confirm = function( isLoaded, message ) {\n  this.isLoaded = isLoaded;\n  this.emitEvent( 'progress', [ this, this.element, message ] );\n};\n\n// -------------------------- jQuery -------------------------- //\n\nImagesLoaded.makeJQueryPlugin = function( jQuery ) {\n  jQuery = jQuery || window.jQuery;\n  if ( !jQuery ) {\n    return;\n  }\n  // set local variable\n  $ = jQuery;\n  // $().imagesLoaded()\n  $.fn.imagesLoaded = function( options, callback ) {\n    var instance = new ImagesLoaded( this, options, callback );\n    return instance.jqDeferred.promise( $(this) );\n  };\n};\n// try making plugin\nImagesLoaded.makeJQueryPlugin();\n\n// --------------------------  -------------------------- //\n\nreturn ImagesLoaded;\n\n});\n","/*!\n * Flickity imagesLoaded v2.0.0\n * enables imagesLoaded option for Flickity\n */\n\n/*jshint browser: true, strict: true, undef: true, unused: true */\n\n( function( window, factory ) {\n  // universal module definition\n  /*jshint strict: false */ /*globals define, module, require */\n  if ( typeof define == 'function' && define.amd ) {\n    // AMD\n    define( [\n      'flickity/js/index',\n      'imagesloaded/imagesloaded'\n    ], function( Flickity, imagesLoaded ) {\n      return factory( window, Flickity, imagesLoaded );\n    });\n  } else if ( typeof module == 'object' && module.exports ) {\n    // CommonJS\n    module.exports = factory(\n      window,\n      require('flickity'),\n      require('imagesloaded')\n    );\n  } else {\n    // browser global\n    window.Flickity = factory(\n      window,\n      window.Flickity,\n      window.imagesLoaded\n    );\n  }\n\n}( window, function factory( window, Flickity, imagesLoaded ) {\n'use strict';\n\nFlickity.createMethods.push('_createImagesLoaded');\n\nvar proto = Flickity.prototype;\n\nproto._createImagesLoaded = function() {\n  this.on( 'activate', this.imagesLoaded );\n};\n\nproto.imagesLoaded = function() {\n  if ( !this.options.imagesLoaded ) {\n    return;\n  }\n  var _this = this;\n  function onImagesLoadedProgress( instance, image ) {\n    var cell = _this.getParentCell( image.img );\n    _this.cellSizeChange( cell && cell.element );\n    if ( !_this.options.freeScroll ) {\n      _this.positionSliderAtSelected();\n    }\n  }\n  imagesLoaded( this.slider ).on( 'progress', onImagesLoadedProgress );\n};\n\nreturn Flickity;\n\n}));\n"],"names":["window","factory","module","require$$0","this","EvEmitter","$","console","extend","a","b","prop","arraySlice","makeArray","obj","isArrayLike","ImagesLoaded","elem","options","onAlways","queryElem","nodeType","elementNodeTypes","childImgs","img","children","child","style","reURL","matches","url","loadingImage","LoadingImage","background","Background","_this","onProgress","image","message","eventName","jqMethod","isComplete","isLoaded","event","method","element","jQuery","callback","instance","require$$1","Flickity","imagesLoaded","proto","onImagesLoadedProgress","cell"],"mappings":"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","x_google_ignoreList":[0,1]}