imagesloaded
Advanced tools
Comparing version 3.2.0 to 4.0.0
{ | ||
"name": "imagesloaded", | ||
"version": "3.2.0", | ||
"version": "4.0.0", | ||
"description": "JavaScript is all like _You images done yet or what?_", | ||
"main": "imagesloaded.js", | ||
"dependencies": { | ||
"eventEmitter": ">=4.2 <5.0", | ||
"eventie": "~1.0.4" | ||
"eventEmitter": ">=4.2 <5.0" | ||
}, | ||
@@ -20,3 +19,5 @@ "devDependencies": { | ||
"bower_components", | ||
"tests" | ||
"tests", | ||
"sandbox/", | ||
"contributing.md" | ||
], | ||
@@ -23,0 +24,0 @@ "homepage": "http://imagesloaded.desandro.com", |
@@ -15,3 +15,7 @@ ## Submitting issues | ||
+ [progress with vanilla JS](http://codepen.io/desandro/pen/hlzaw) | ||
+ [`{ background: true }` with jQuery](http://codepen.io/desandro/pen/pjVMPB) | ||
+ [`{ background: true }` with vanilla JS](http://codepen.io/desandro/pen/avKooW) | ||
+ [`{ background: '.selector' }` with jQuery](http://codepen.io/desandro/pen/avKoZL) | ||
+ [`{ background: '.selector' }` with vanilla JS](http://codepen.io/desandro/pen/vNrBGz) | ||
Providing a reduced test case is the best way to get your issue addressed. They help you point out the problem. They help me verify and debug the problem. They help others understand the problem. Without a reduced test case, your issue may be closed. |
/*! | ||
* imagesLoaded v3.2.0 | ||
* imagesLoaded v4.0.0 | ||
* JavaScript is all like "You images are done yet or what?" | ||
@@ -15,6 +15,5 @@ * MIT License | ||
define( [ | ||
'eventEmitter/EventEmitter', | ||
'eventie/eventie' | ||
], function( EventEmitter, eventie ) { | ||
return factory( window, EventEmitter, eventie ); | ||
'eventEmitter/EventEmitter' | ||
], function( EventEmitter ) { | ||
return factory( window, EventEmitter ); | ||
}); | ||
@@ -25,4 +24,3 @@ } else if ( typeof module == 'object' && module.exports ) { | ||
window, | ||
require('wolfy87-eventemitter'), | ||
require('eventie') | ||
require('wolfy87-eventemitter') | ||
); | ||
@@ -33,4 +31,3 @@ } else { | ||
window, | ||
window.EventEmitter, | ||
window.eventie | ||
window.EventEmitter | ||
); | ||
@@ -43,3 +40,3 @@ } | ||
function factory( window, EventEmitter, eventie ) { | ||
function factory( window, EventEmitter ) { | ||
@@ -61,11 +58,6 @@ 'use strict'; | ||
var objToString = Object.prototype.toString; | ||
function isArray( obj ) { | ||
return objToString.call( obj ) == '[object Array]'; | ||
} | ||
// turn element or nodeList into an array | ||
function makeArray( obj ) { | ||
var ary = []; | ||
if ( isArray( obj ) ) { | ||
if ( Array.isArray( obj ) ) { | ||
// use object if already an array | ||
@@ -85,306 +77,300 @@ ary = obj; | ||
// -------------------------- imagesLoaded -------------------------- // | ||
// -------------------------- imagesLoaded -------------------------- // | ||
/** | ||
* @param {Array, Element, NodeList, String} elem | ||
* @param {Object or Function} options - if function, use as callback | ||
* @param {Function} onAlways - callback function | ||
*/ | ||
function ImagesLoaded( elem, options, onAlways ) { | ||
// coerce ImagesLoaded() without new, to be new ImagesLoaded() | ||
if ( !( this instanceof ImagesLoaded ) ) { | ||
return new ImagesLoaded( elem, options, onAlways ); | ||
} | ||
// use elem as selector string | ||
if ( typeof elem == 'string' ) { | ||
elem = document.querySelectorAll( elem ); | ||
} | ||
/** | ||
* @param {Array, Element, NodeList, String} elem | ||
* @param {Object or Function} options - if function, use as callback | ||
* @param {Function} onAlways - callback function | ||
*/ | ||
function ImagesLoaded( elem, options, onAlways ) { | ||
// coerce ImagesLoaded() without new, to be new ImagesLoaded() | ||
if ( !( this instanceof ImagesLoaded ) ) { | ||
return new ImagesLoaded( elem, options, onAlways ); | ||
} | ||
// use elem as selector string | ||
if ( typeof elem == 'string' ) { | ||
elem = document.querySelectorAll( elem ); | ||
} | ||
this.elements = makeArray( elem ); | ||
this.options = extend( {}, this.options ); | ||
this.elements = makeArray( elem ); | ||
this.options = extend( {}, this.options ); | ||
if ( typeof options == 'function' ) { | ||
onAlways = options; | ||
} else { | ||
extend( this.options, options ); | ||
} | ||
if ( typeof options == 'function' ) { | ||
onAlways = options; | ||
} else { | ||
extend( this.options, options ); | ||
} | ||
if ( onAlways ) { | ||
this.on( 'always', onAlways ); | ||
} | ||
if ( onAlways ) { | ||
this.on( 'always', onAlways ); | ||
} | ||
this.getImages(); | ||
this.getImages(); | ||
if ( $ ) { | ||
// add jQuery Deferred object | ||
this.jqDeferred = new $.Deferred(); | ||
} | ||
// HACK check async to allow time to bind listeners | ||
var _this = this; | ||
setTimeout( function() { | ||
_this.check(); | ||
}); | ||
if ( $ ) { | ||
// add jQuery Deferred object | ||
this.jqDeferred = new $.Deferred(); | ||
} | ||
ImagesLoaded.prototype = new EventEmitter(); | ||
// HACK check async to allow time to bind listeners | ||
setTimeout( function() { | ||
this.check(); | ||
}.bind( this )); | ||
} | ||
ImagesLoaded.prototype.options = {}; | ||
ImagesLoaded.prototype = Object.create( EventEmitter.prototype ); | ||
ImagesLoaded.prototype.getImages = function() { | ||
this.images = []; | ||
ImagesLoaded.prototype.options = {}; | ||
// filter & find items if we have an item selector | ||
for ( var i=0; i < this.elements.length; i++ ) { | ||
var elem = this.elements[i]; | ||
this.addElementImages( elem ); | ||
} | ||
}; | ||
ImagesLoaded.prototype.getImages = function() { | ||
this.images = []; | ||
/** | ||
* @param {Node} element | ||
*/ | ||
ImagesLoaded.prototype.addElementImages = function( elem ) { | ||
// filter siblings | ||
if ( elem.nodeName == 'IMG' ) { | ||
this.addImage( elem ); | ||
} | ||
// get background image on element | ||
if ( this.options.background === true ) { | ||
this.addElementBackgroundImages( elem ); | ||
} | ||
// filter & find items if we have an item selector | ||
this.elements.forEach( this.addElementImages, this ); | ||
}; | ||
// find children | ||
// no non-element nodes, #143 | ||
var nodeType = elem.nodeType; | ||
if ( !nodeType || !elementNodeTypes[ nodeType ] ) { | ||
return; | ||
} | ||
var childImgs = elem.querySelectorAll('img'); | ||
// concat childElems to filterFound array | ||
for ( var i=0; i < childImgs.length; i++ ) { | ||
var img = childImgs[i]; | ||
this.addImage( img ); | ||
} | ||
/** | ||
* @param {Node} element | ||
*/ | ||
ImagesLoaded.prototype.addElementImages = function( elem ) { | ||
// filter siblings | ||
if ( elem.nodeName == 'IMG' ) { | ||
this.addImage( elem ); | ||
} | ||
// get background image on element | ||
if ( this.options.background === true ) { | ||
this.addElementBackgroundImages( elem ); | ||
} | ||
// get child background images | ||
if ( typeof this.options.background == 'string' ) { | ||
var children = elem.querySelectorAll( this.options.background ); | ||
for ( i=0; i < children.length; i++ ) { | ||
var child = children[i]; | ||
this.addElementBackgroundImages( child ); | ||
} | ||
// find children | ||
// no non-element nodes, #143 | ||
var nodeType = elem.nodeType; | ||
if ( !nodeType || !elementNodeTypes[ nodeType ] ) { | ||
return; | ||
} | ||
var childImgs = elem.querySelectorAll('img'); | ||
// concat childElems to filterFound array | ||
for ( var i=0; i < childImgs.length; i++ ) { | ||
var img = childImgs[i]; | ||
this.addImage( img ); | ||
} | ||
// get child background images | ||
if ( typeof this.options.background == 'string' ) { | ||
var children = elem.querySelectorAll( this.options.background ); | ||
for ( i=0; i < children.length; i++ ) { | ||
var child = children[i]; | ||
this.addElementBackgroundImages( child ); | ||
} | ||
}; | ||
} | ||
}; | ||
var elementNodeTypes = { | ||
1: true, | ||
9: true, | ||
11: true | ||
}; | ||
var elementNodeTypes = { | ||
1: true, | ||
9: true, | ||
11: true | ||
}; | ||
ImagesLoaded.prototype.addElementBackgroundImages = function( elem ) { | ||
var style = getStyle( elem ); | ||
// get url inside url("...") | ||
var reURL = /url\(['"]*([^'"\)]+)['"]*\)/gi; | ||
var matches = reURL.exec( style.backgroundImage ); | ||
while ( matches !== null ) { | ||
var url = matches && matches[1]; | ||
if ( url ) { | ||
this.addBackground( url, elem ); | ||
} | ||
matches = reURL.exec( style.backgroundImage ); | ||
ImagesLoaded.prototype.addElementBackgroundImages = function( elem ) { | ||
var style = getComputedStyle( elem ); | ||
if ( !style ) { | ||
// Firefox returns null if in a hidden iframe https://bugzil.la/548397 | ||
return; | ||
} | ||
// get url inside url("...") | ||
var reURL = /url\((['"])?(.*?)\1\)/gi; | ||
var matches = reURL.exec( style.backgroundImage ); | ||
while ( matches !== null ) { | ||
var url = matches && matches[2]; | ||
if ( url ) { | ||
this.addBackground( url, elem ); | ||
} | ||
}; | ||
matches = reURL.exec( style.backgroundImage ); | ||
} | ||
}; | ||
// IE8 | ||
var getStyle = window.getComputedStyle || function( elem ) { | ||
return elem.currentStyle; | ||
}; | ||
/** | ||
* @param {Image} img | ||
*/ | ||
ImagesLoaded.prototype.addImage = function( img ) { | ||
var loadingImage = new LoadingImage( img ); | ||
this.images.push( loadingImage ); | ||
}; | ||
/** | ||
* @param {Image} img | ||
*/ | ||
ImagesLoaded.prototype.addImage = function( img ) { | ||
var loadingImage = new LoadingImage( img ); | ||
this.images.push( loadingImage ); | ||
}; | ||
ImagesLoaded.prototype.addBackground = function( url, elem ) { | ||
var background = new Background( url, elem ); | ||
this.images.push( background ); | ||
}; | ||
ImagesLoaded.prototype.addBackground = function( url, elem ) { | ||
var background = new Background( url, elem ); | ||
this.images.push( background ); | ||
}; | ||
ImagesLoaded.prototype.check = function() { | ||
var _this = this; | ||
this.progressedCount = 0; | ||
this.hasAnyBroken = false; | ||
// complete if no images | ||
if ( !this.images.length ) { | ||
this.complete(); | ||
return; | ||
} | ||
ImagesLoaded.prototype.check = function() { | ||
var _this = this; | ||
this.progressedCount = 0; | ||
this.hasAnyBroken = false; | ||
// complete if no images | ||
if ( !this.images.length ) { | ||
this.complete(); | ||
return; | ||
} | ||
function onProgress( image, elem, message ) { | ||
// HACK - Chrome triggers event before object properties have changed. #83 | ||
setTimeout( function() { | ||
_this.progress( image, elem, message ); | ||
}); | ||
} | ||
function onProgress( image, elem, message ) { | ||
// HACK - Chrome triggers event before object properties have changed. #83 | ||
setTimeout( function() { | ||
_this.progress( image, elem, message ); | ||
}); | ||
} | ||
this.images.forEach( function( loadingImage ) { | ||
loadingImage.once( 'progress', onProgress ); | ||
loadingImage.check(); | ||
}); | ||
}; | ||
for ( var i=0; i < this.images.length; i++ ) { | ||
var loadingImage = this.images[i]; | ||
loadingImage.once( 'progress', onProgress ); | ||
loadingImage.check(); | ||
} | ||
}; | ||
ImagesLoaded.prototype.progress = function( image, elem, message ) { | ||
this.progressedCount++; | ||
this.hasAnyBroken = this.hasAnyBroken || !image.isLoaded; | ||
// progress event | ||
this.emit( 'progress', this, image, elem ); | ||
if ( this.jqDeferred && this.jqDeferred.notify ) { | ||
this.jqDeferred.notify( this, image ); | ||
} | ||
// check if completed | ||
if ( this.progressedCount == this.images.length ) { | ||
this.complete(); | ||
} | ||
ImagesLoaded.prototype.progress = function( image, elem, message ) { | ||
this.progressedCount++; | ||
this.hasAnyBroken = this.hasAnyBroken || !image.isLoaded; | ||
// progress event | ||
this.emit( 'progress', this, image, elem ); | ||
if ( this.jqDeferred && this.jqDeferred.notify ) { | ||
this.jqDeferred.notify( this, image ); | ||
} | ||
// check if completed | ||
if ( this.progressedCount == this.images.length ) { | ||
this.complete(); | ||
} | ||
if ( this.options.debug && console ) { | ||
console.log( 'progress: ' + message, image, elem ); | ||
} | ||
}; | ||
if ( this.options.debug && console ) { | ||
console.log( 'progress: ' + message, image, elem ); | ||
} | ||
}; | ||
ImagesLoaded.prototype.complete = function() { | ||
var eventName = this.hasAnyBroken ? 'fail' : 'done'; | ||
this.isComplete = true; | ||
this.emit( eventName, this ); | ||
this.emit( 'always', this ); | ||
if ( this.jqDeferred ) { | ||
var jqMethod = this.hasAnyBroken ? 'reject' : 'resolve'; | ||
this.jqDeferred[ jqMethod ]( this ); | ||
} | ||
}; | ||
ImagesLoaded.prototype.complete = function() { | ||
var eventName = this.hasAnyBroken ? 'fail' : 'done'; | ||
this.isComplete = true; | ||
this.emit( eventName, this ); | ||
this.emit( 'always', this ); | ||
if ( this.jqDeferred ) { | ||
var jqMethod = this.hasAnyBroken ? 'reject' : 'resolve'; | ||
this.jqDeferred[ jqMethod ]( this ); | ||
} | ||
}; | ||
// -------------------------- -------------------------- // | ||
// -------------------------- -------------------------- // | ||
function LoadingImage( img ) { | ||
this.img = img; | ||
} | ||
function LoadingImage( img ) { | ||
this.img = img; | ||
LoadingImage.prototype = Object.create( EventEmitter.prototype ); | ||
LoadingImage.prototype.check = function() { | ||
// If complete is true and browser supports natural sizes, | ||
// try to check for image status manually. | ||
var isComplete = this.getIsImageComplete(); | ||
if ( isComplete ) { | ||
// report based on naturalWidth | ||
this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' ); | ||
return; | ||
} | ||
LoadingImage.prototype = new EventEmitter(); | ||
// If none of the checks above matched, simulate loading on detached element. | ||
this.proxyImage = new Image(); | ||
this.proxyImage.addEventListener( 'load', this ); | ||
this.proxyImage.addEventListener( 'error', this ); | ||
// bind to image as well for Firefox. #191 | ||
this.img.addEventListener( 'load', this ); | ||
this.img.addEventListener( 'error', this ); | ||
this.proxyImage.src = this.img.src; | ||
}; | ||
LoadingImage.prototype.check = function() { | ||
// If complete is true and browser supports natural sizes, | ||
// try to check for image status manually. | ||
var isComplete = this.getIsImageComplete(); | ||
if ( isComplete ) { | ||
// report based on naturalWidth | ||
this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' ); | ||
return; | ||
} | ||
LoadingImage.prototype.getIsImageComplete = function() { | ||
return this.img.complete && this.img.naturalWidth !== undefined; | ||
}; | ||
// If none of the checks above matched, simulate loading on detached element. | ||
this.proxyImage = new Image(); | ||
eventie.bind( this.proxyImage, 'load', this ); | ||
eventie.bind( this.proxyImage, 'error', this ); | ||
// bind to image as well for Firefox. #191 | ||
eventie.bind( this.img, 'load', this ); | ||
eventie.bind( this.img, 'error', this ); | ||
this.proxyImage.src = this.img.src; | ||
}; | ||
LoadingImage.prototype.confirm = function( isLoaded, message ) { | ||
this.isLoaded = isLoaded; | ||
this.emit( 'progress', this, this.img, message ); | ||
}; | ||
LoadingImage.prototype.getIsImageComplete = function() { | ||
return this.img.complete && this.img.naturalWidth !== undefined; | ||
}; | ||
// ----- events ----- // | ||
LoadingImage.prototype.confirm = function( isLoaded, message ) { | ||
this.isLoaded = isLoaded; | ||
this.emit( 'progress', this, this.img, message ); | ||
}; | ||
// trigger specified handler for event type | ||
LoadingImage.prototype.handleEvent = function( event ) { | ||
var method = 'on' + event.type; | ||
if ( this[ method ] ) { | ||
this[ method ]( event ); | ||
} | ||
}; | ||
// ----- events ----- // | ||
LoadingImage.prototype.onload = function() { | ||
this.confirm( true, 'onload' ); | ||
this.unbindEvents(); | ||
}; | ||
// trigger specified handler for event type | ||
LoadingImage.prototype.handleEvent = function( event ) { | ||
var method = 'on' + event.type; | ||
if ( this[ method ] ) { | ||
this[ method ]( event ); | ||
} | ||
}; | ||
LoadingImage.prototype.onerror = function() { | ||
this.confirm( false, 'onerror' ); | ||
this.unbindEvents(); | ||
}; | ||
LoadingImage.prototype.onload = function() { | ||
this.confirm( true, 'onload' ); | ||
this.unbindEvents(); | ||
}; | ||
LoadingImage.prototype.unbindEvents = function() { | ||
this.proxyImage.removeEventListener( 'load', this ); | ||
this.proxyImage.removeEventListener( 'error', this ); | ||
this.img.removeEventListener( 'load', this ); | ||
this.img.removeEventListener( 'error', this ); | ||
}; | ||
LoadingImage.prototype.onerror = function() { | ||
this.confirm( false, 'onerror' ); | ||
this.unbindEvents(); | ||
}; | ||
// -------------------------- Background -------------------------- // | ||
LoadingImage.prototype.unbindEvents = function() { | ||
eventie.unbind( this.proxyImage, 'load', this ); | ||
eventie.unbind( this.proxyImage, 'error', this ); | ||
eventie.unbind( this.img, 'load', this ); | ||
eventie.unbind( this.img, 'error', this ); | ||
}; | ||
function Background( url, element ) { | ||
this.url = url; | ||
this.element = element; | ||
this.img = new Image(); | ||
} | ||
// -------------------------- Background -------------------------- // | ||
// inherit LoadingImage prototype | ||
Background.prototype = Object.create( LoadingImage.prototype ); | ||
function Background( url, element ) { | ||
this.url = url; | ||
this.element = element; | ||
this.img = new Image(); | ||
Background.prototype.check = function() { | ||
this.img.addEventListener( 'load', this ); | ||
this.img.addEventListener( 'error', this ); | ||
this.img.src = this.url; | ||
// check if image is already complete | ||
var isComplete = this.getIsImageComplete(); | ||
if ( isComplete ) { | ||
this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' ); | ||
this.unbindEvents(); | ||
} | ||
}; | ||
// inherit LoadingImage prototype | ||
Background.prototype = new LoadingImage(); | ||
Background.prototype.unbindEvents = function() { | ||
this.img.addEventListener( 'load', this ); | ||
this.img.addEventListener( 'error', this ); | ||
}; | ||
Background.prototype.check = function() { | ||
eventie.bind( this.img, 'load', this ); | ||
eventie.bind( this.img, 'error', this ); | ||
this.img.src = this.url; | ||
// check if image is already complete | ||
var isComplete = this.getIsImageComplete(); | ||
if ( isComplete ) { | ||
this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' ); | ||
this.unbindEvents(); | ||
} | ||
}; | ||
Background.prototype.confirm = function( isLoaded, message ) { | ||
this.isLoaded = isLoaded; | ||
this.emit( 'progress', this, this.element, message ); | ||
}; | ||
Background.prototype.unbindEvents = function() { | ||
eventie.unbind( this.img, 'load', this ); | ||
eventie.unbind( this.img, 'error', this ); | ||
}; | ||
// -------------------------- jQuery -------------------------- // | ||
Background.prototype.confirm = function( isLoaded, message ) { | ||
this.isLoaded = isLoaded; | ||
this.emit( 'progress', this, this.element, message ); | ||
ImagesLoaded.makeJQueryPlugin = function( jQuery ) { | ||
jQuery = jQuery || window.jQuery; | ||
if ( !jQuery ) { | ||
return; | ||
} | ||
// set local variable | ||
$ = jQuery; | ||
// $().imagesLoaded() | ||
$.fn.imagesLoaded = function( options, callback ) { | ||
var instance = new ImagesLoaded( this, options, callback ); | ||
return instance.jqDeferred.promise( $(this) ); | ||
}; | ||
}; | ||
// try making plugin | ||
ImagesLoaded.makeJQueryPlugin(); | ||
// -------------------------- jQuery -------------------------- // | ||
// -------------------------- -------------------------- // | ||
ImagesLoaded.makeJQueryPlugin = function( jQuery ) { | ||
jQuery = jQuery || window.jQuery; | ||
if ( !jQuery ) { | ||
return; | ||
} | ||
// set local variable | ||
$ = jQuery; | ||
// $().imagesLoaded() | ||
$.fn.imagesLoaded = function( options, callback ) { | ||
var instance = new ImagesLoaded( this, options, callback ); | ||
return instance.jqDeferred.promise( $(this) ); | ||
}; | ||
}; | ||
// try making plugin | ||
ImagesLoaded.makeJQueryPlugin(); | ||
return ImagesLoaded; | ||
// -------------------------- -------------------------- // | ||
return ImagesLoaded; | ||
}); |
/*! | ||
* imagesLoaded PACKAGED v3.2.0 | ||
* imagesLoaded PACKAGED v4.0.0 | ||
* JavaScript is all like "You images are done yet or what?" | ||
@@ -8,554 +8,478 @@ * MIT License | ||
/*! | ||
* EventEmitter v4.2.6 - git.io/ee | ||
* Oliver Caldwell | ||
* MIT license | ||
* EventEmitter v4.2.11 - git.io/ee | ||
* Unlicense - http://unlicense.org/ | ||
* Oliver Caldwell - http://oli.me.uk/ | ||
* @preserve | ||
*/ | ||
(function () { | ||
'use strict'; | ||
;(function () { | ||
'use strict'; | ||
/** | ||
* Class for managing events. | ||
* Can be extended to provide event functionality in other classes. | ||
* | ||
* @class EventEmitter Manages event registering and emitting. | ||
*/ | ||
function EventEmitter() {} | ||
/** | ||
* Class for managing events. | ||
* Can be extended to provide event functionality in other classes. | ||
* | ||
* @class EventEmitter Manages event registering and emitting. | ||
*/ | ||
function EventEmitter() {} | ||
// Shortcuts to improve speed and size | ||
var proto = EventEmitter.prototype; | ||
var exports = this; | ||
var originalGlobalValue = exports.EventEmitter; | ||
// Shortcuts to improve speed and size | ||
var proto = EventEmitter.prototype; | ||
var exports = this; | ||
var originalGlobalValue = exports.EventEmitter; | ||
/** | ||
* Finds the index of the listener for the event in it's storage array. | ||
* | ||
* @param {Function[]} listeners Array of listeners to search through. | ||
* @param {Function} listener Method to look for. | ||
* @return {Number} Index of the specified listener, -1 if not found | ||
* @api private | ||
*/ | ||
function indexOfListener(listeners, listener) { | ||
var i = listeners.length; | ||
while (i--) { | ||
if (listeners[i].listener === listener) { | ||
return i; | ||
} | ||
} | ||
/** | ||
* Finds the index of the listener for the event in its storage array. | ||
* | ||
* @param {Function[]} listeners Array of listeners to search through. | ||
* @param {Function} listener Method to look for. | ||
* @return {Number} Index of the specified listener, -1 if not found | ||
* @api private | ||
*/ | ||
function indexOfListener(listeners, listener) { | ||
var i = listeners.length; | ||
while (i--) { | ||
if (listeners[i].listener === listener) { | ||
return i; | ||
} | ||
} | ||
return -1; | ||
} | ||
return -1; | ||
} | ||
/** | ||
* Alias a method while keeping the context correct, to allow for overwriting of target method. | ||
* | ||
* @param {String} name The name of the target method. | ||
* @return {Function} The aliased method | ||
* @api private | ||
*/ | ||
function alias(name) { | ||
return function aliasClosure() { | ||
return this[name].apply(this, arguments); | ||
}; | ||
} | ||
/** | ||
* Alias a method while keeping the context correct, to allow for overwriting of target method. | ||
* | ||
* @param {String} name The name of the target method. | ||
* @return {Function} The aliased method | ||
* @api private | ||
*/ | ||
function alias(name) { | ||
return function aliasClosure() { | ||
return this[name].apply(this, arguments); | ||
}; | ||
} | ||
/** | ||
* Returns the listener array for the specified event. | ||
* Will initialise the event object and listener arrays if required. | ||
* Will return an object if you use a regex search. The object contains keys for each matched event. So /ba[rz]/ might return an object containing bar and baz. But only if you have either defined them with defineEvent or added some listeners to them. | ||
* Each property in the object response is an array of listener functions. | ||
* | ||
* @param {String|RegExp} evt Name of the event to return the listeners from. | ||
* @return {Function[]|Object} All listener functions for the event. | ||
*/ | ||
proto.getListeners = function getListeners(evt) { | ||
var events = this._getEvents(); | ||
var response; | ||
var key; | ||
/** | ||
* Returns the listener array for the specified event. | ||
* Will initialise the event object and listener arrays if required. | ||
* Will return an object if you use a regex search. The object contains keys for each matched event. So /ba[rz]/ might return an object containing bar and baz. But only if you have either defined them with defineEvent or added some listeners to them. | ||
* Each property in the object response is an array of listener functions. | ||
* | ||
* @param {String|RegExp} evt Name of the event to return the listeners from. | ||
* @return {Function[]|Object} All listener functions for the event. | ||
*/ | ||
proto.getListeners = function getListeners(evt) { | ||
var events = this._getEvents(); | ||
var response; | ||
var key; | ||
// Return a concatenated array of all matching events if | ||
// the selector is a regular expression. | ||
if (typeof evt === 'object') { | ||
response = {}; | ||
for (key in events) { | ||
if (events.hasOwnProperty(key) && evt.test(key)) { | ||
response[key] = events[key]; | ||
} | ||
} | ||
} | ||
else { | ||
response = events[evt] || (events[evt] = []); | ||
} | ||
// Return a concatenated array of all matching events if | ||
// the selector is a regular expression. | ||
if (evt instanceof RegExp) { | ||
response = {}; | ||
for (key in events) { | ||
if (events.hasOwnProperty(key) && evt.test(key)) { | ||
response[key] = events[key]; | ||
} | ||
} | ||
} | ||
else { | ||
response = events[evt] || (events[evt] = []); | ||
} | ||
return response; | ||
}; | ||
return response; | ||
}; | ||
/** | ||
* Takes a list of listener objects and flattens it into a list of listener functions. | ||
* | ||
* @param {Object[]} listeners Raw listener objects. | ||
* @return {Function[]} Just the listener functions. | ||
*/ | ||
proto.flattenListeners = function flattenListeners(listeners) { | ||
var flatListeners = []; | ||
var i; | ||
/** | ||
* Takes a list of listener objects and flattens it into a list of listener functions. | ||
* | ||
* @param {Object[]} listeners Raw listener objects. | ||
* @return {Function[]} Just the listener functions. | ||
*/ | ||
proto.flattenListeners = function flattenListeners(listeners) { | ||
var flatListeners = []; | ||
var i; | ||
for (i = 0; i < listeners.length; i += 1) { | ||
flatListeners.push(listeners[i].listener); | ||
} | ||
for (i = 0; i < listeners.length; i += 1) { | ||
flatListeners.push(listeners[i].listener); | ||
} | ||
return flatListeners; | ||
}; | ||
return flatListeners; | ||
}; | ||
/** | ||
* Fetches the requested listeners via getListeners but will always return the results inside an object. This is mainly for internal use but others may find it useful. | ||
* | ||
* @param {String|RegExp} evt Name of the event to return the listeners from. | ||
* @return {Object} All listener functions for an event in an object. | ||
*/ | ||
proto.getListenersAsObject = function getListenersAsObject(evt) { | ||
var listeners = this.getListeners(evt); | ||
var response; | ||
/** | ||
* Fetches the requested listeners via getListeners but will always return the results inside an object. This is mainly for internal use but others may find it useful. | ||
* | ||
* @param {String|RegExp} evt Name of the event to return the listeners from. | ||
* @return {Object} All listener functions for an event in an object. | ||
*/ | ||
proto.getListenersAsObject = function getListenersAsObject(evt) { | ||
var listeners = this.getListeners(evt); | ||
var response; | ||
if (listeners instanceof Array) { | ||
response = {}; | ||
response[evt] = listeners; | ||
} | ||
if (listeners instanceof Array) { | ||
response = {}; | ||
response[evt] = listeners; | ||
} | ||
return response || listeners; | ||
}; | ||
return response || listeners; | ||
}; | ||
/** | ||
* Adds a listener function to the specified event. | ||
* The listener will not be added if it is a duplicate. | ||
* If the listener returns true then it will be removed after it is called. | ||
* If you pass a regular expression as the event name then the listener will be added to all events that match it. | ||
* | ||
* @param {String|RegExp} evt Name of the event to attach the listener to. | ||
* @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.addListener = function addListener(evt, listener) { | ||
var listeners = this.getListenersAsObject(evt); | ||
var listenerIsWrapped = typeof listener === 'object'; | ||
var key; | ||
/** | ||
* Adds a listener function to the specified event. | ||
* The listener will not be added if it is a duplicate. | ||
* If the listener returns true then it will be removed after it is called. | ||
* If you pass a regular expression as the event name then the listener will be added to all events that match it. | ||
* | ||
* @param {String|RegExp} evt Name of the event to attach the listener to. | ||
* @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.addListener = function addListener(evt, listener) { | ||
var listeners = this.getListenersAsObject(evt); | ||
var listenerIsWrapped = typeof listener === 'object'; | ||
var key; | ||
for (key in listeners) { | ||
if (listeners.hasOwnProperty(key) && indexOfListener(listeners[key], listener) === -1) { | ||
listeners[key].push(listenerIsWrapped ? listener : { | ||
listener: listener, | ||
once: false | ||
}); | ||
} | ||
} | ||
for (key in listeners) { | ||
if (listeners.hasOwnProperty(key) && indexOfListener(listeners[key], listener) === -1) { | ||
listeners[key].push(listenerIsWrapped ? listener : { | ||
listener: listener, | ||
once: false | ||
}); | ||
} | ||
} | ||
return this; | ||
}; | ||
return this; | ||
}; | ||
/** | ||
* Alias of addListener | ||
*/ | ||
proto.on = alias('addListener'); | ||
/** | ||
* Alias of addListener | ||
*/ | ||
proto.on = alias('addListener'); | ||
/** | ||
* Semi-alias of addListener. It will add a listener that will be | ||
* automatically removed after it's first execution. | ||
* | ||
* @param {String|RegExp} evt Name of the event to attach the listener to. | ||
* @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.addOnceListener = function addOnceListener(evt, listener) { | ||
return this.addListener(evt, { | ||
listener: listener, | ||
once: true | ||
}); | ||
}; | ||
/** | ||
* Semi-alias of addListener. It will add a listener that will be | ||
* automatically removed after its first execution. | ||
* | ||
* @param {String|RegExp} evt Name of the event to attach the listener to. | ||
* @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.addOnceListener = function addOnceListener(evt, listener) { | ||
return this.addListener(evt, { | ||
listener: listener, | ||
once: true | ||
}); | ||
}; | ||
/** | ||
* Alias of addOnceListener. | ||
*/ | ||
proto.once = alias('addOnceListener'); | ||
/** | ||
* Alias of addOnceListener. | ||
*/ | ||
proto.once = alias('addOnceListener'); | ||
/** | ||
* Defines an event name. This is required if you want to use a regex to add a listener to multiple events at once. If you don't do this then how do you expect it to know what event to add to? Should it just add to every possible match for a regex? No. That is scary and bad. | ||
* You need to tell it what event names should be matched by a regex. | ||
* | ||
* @param {String} evt Name of the event to create. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.defineEvent = function defineEvent(evt) { | ||
this.getListeners(evt); | ||
return this; | ||
}; | ||
/** | ||
* Defines an event name. This is required if you want to use a regex to add a listener to multiple events at once. If you don't do this then how do you expect it to know what event to add to? Should it just add to every possible match for a regex? No. That is scary and bad. | ||
* You need to tell it what event names should be matched by a regex. | ||
* | ||
* @param {String} evt Name of the event to create. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.defineEvent = function defineEvent(evt) { | ||
this.getListeners(evt); | ||
return this; | ||
}; | ||
/** | ||
* Uses defineEvent to define multiple events. | ||
* | ||
* @param {String[]} evts An array of event names to define. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.defineEvents = function defineEvents(evts) { | ||
for (var i = 0; i < evts.length; i += 1) { | ||
this.defineEvent(evts[i]); | ||
} | ||
return this; | ||
}; | ||
/** | ||
* Uses defineEvent to define multiple events. | ||
* | ||
* @param {String[]} evts An array of event names to define. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.defineEvents = function defineEvents(evts) { | ||
for (var i = 0; i < evts.length; i += 1) { | ||
this.defineEvent(evts[i]); | ||
} | ||
return this; | ||
}; | ||
/** | ||
* Removes a listener function from the specified event. | ||
* When passed a regular expression as the event name, it will remove the listener from all events that match it. | ||
* | ||
* @param {String|RegExp} evt Name of the event to remove the listener from. | ||
* @param {Function} listener Method to remove from the event. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.removeListener = function removeListener(evt, listener) { | ||
var listeners = this.getListenersAsObject(evt); | ||
var index; | ||
var key; | ||
/** | ||
* Removes a listener function from the specified event. | ||
* When passed a regular expression as the event name, it will remove the listener from all events that match it. | ||
* | ||
* @param {String|RegExp} evt Name of the event to remove the listener from. | ||
* @param {Function} listener Method to remove from the event. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.removeListener = function removeListener(evt, listener) { | ||
var listeners = this.getListenersAsObject(evt); | ||
var index; | ||
var key; | ||
for (key in listeners) { | ||
if (listeners.hasOwnProperty(key)) { | ||
index = indexOfListener(listeners[key], listener); | ||
for (key in listeners) { | ||
if (listeners.hasOwnProperty(key)) { | ||
index = indexOfListener(listeners[key], listener); | ||
if (index !== -1) { | ||
listeners[key].splice(index, 1); | ||
} | ||
} | ||
} | ||
if (index !== -1) { | ||
listeners[key].splice(index, 1); | ||
} | ||
} | ||
} | ||
return this; | ||
}; | ||
return this; | ||
}; | ||
/** | ||
* Alias of removeListener | ||
*/ | ||
proto.off = alias('removeListener'); | ||
/** | ||
* Alias of removeListener | ||
*/ | ||
proto.off = alias('removeListener'); | ||
/** | ||
* Adds listeners in bulk using the manipulateListeners method. | ||
* If you pass an object as the second argument you can add to multiple events at once. The object should contain key value pairs of events and listeners or listener arrays. You can also pass it an event name and an array of listeners to be added. | ||
* You can also pass it a regular expression to add the array of listeners to all events that match it. | ||
* Yeah, this function does quite a bit. That's probably a bad thing. | ||
* | ||
* @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add to multiple events at once. | ||
* @param {Function[]} [listeners] An optional array of listener functions to add. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.addListeners = function addListeners(evt, listeners) { | ||
// Pass through to manipulateListeners | ||
return this.manipulateListeners(false, evt, listeners); | ||
}; | ||
/** | ||
* Adds listeners in bulk using the manipulateListeners method. | ||
* If you pass an object as the second argument you can add to multiple events at once. The object should contain key value pairs of events and listeners or listener arrays. You can also pass it an event name and an array of listeners to be added. | ||
* You can also pass it a regular expression to add the array of listeners to all events that match it. | ||
* Yeah, this function does quite a bit. That's probably a bad thing. | ||
* | ||
* @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add to multiple events at once. | ||
* @param {Function[]} [listeners] An optional array of listener functions to add. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.addListeners = function addListeners(evt, listeners) { | ||
// Pass through to manipulateListeners | ||
return this.manipulateListeners(false, evt, listeners); | ||
}; | ||
/** | ||
* Removes listeners in bulk using the manipulateListeners method. | ||
* If you pass an object as the second argument you can remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays. | ||
* You can also pass it an event name and an array of listeners to be removed. | ||
* You can also pass it a regular expression to remove the listeners from all events that match it. | ||
* | ||
* @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to remove from multiple events at once. | ||
* @param {Function[]} [listeners] An optional array of listener functions to remove. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.removeListeners = function removeListeners(evt, listeners) { | ||
// Pass through to manipulateListeners | ||
return this.manipulateListeners(true, evt, listeners); | ||
}; | ||
/** | ||
* Removes listeners in bulk using the manipulateListeners method. | ||
* If you pass an object as the second argument you can remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays. | ||
* You can also pass it an event name and an array of listeners to be removed. | ||
* You can also pass it a regular expression to remove the listeners from all events that match it. | ||
* | ||
* @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to remove from multiple events at once. | ||
* @param {Function[]} [listeners] An optional array of listener functions to remove. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.removeListeners = function removeListeners(evt, listeners) { | ||
// Pass through to manipulateListeners | ||
return this.manipulateListeners(true, evt, listeners); | ||
}; | ||
/** | ||
* Edits listeners in bulk. The addListeners and removeListeners methods both use this to do their job. You should really use those instead, this is a little lower level. | ||
* The first argument will determine if the listeners are removed (true) or added (false). | ||
* If you pass an object as the second argument you can add/remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays. | ||
* You can also pass it an event name and an array of listeners to be added/removed. | ||
* You can also pass it a regular expression to manipulate the listeners of all events that match it. | ||
* | ||
* @param {Boolean} remove True if you want to remove listeners, false if you want to add. | ||
* @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add/remove from multiple events at once. | ||
* @param {Function[]} [listeners] An optional array of listener functions to add/remove. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.manipulateListeners = function manipulateListeners(remove, evt, listeners) { | ||
var i; | ||
var value; | ||
var single = remove ? this.removeListener : this.addListener; | ||
var multiple = remove ? this.removeListeners : this.addListeners; | ||
/** | ||
* Edits listeners in bulk. The addListeners and removeListeners methods both use this to do their job. You should really use those instead, this is a little lower level. | ||
* The first argument will determine if the listeners are removed (true) or added (false). | ||
* If you pass an object as the second argument you can add/remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays. | ||
* You can also pass it an event name and an array of listeners to be added/removed. | ||
* You can also pass it a regular expression to manipulate the listeners of all events that match it. | ||
* | ||
* @param {Boolean} remove True if you want to remove listeners, false if you want to add. | ||
* @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add/remove from multiple events at once. | ||
* @param {Function[]} [listeners] An optional array of listener functions to add/remove. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.manipulateListeners = function manipulateListeners(remove, evt, listeners) { | ||
var i; | ||
var value; | ||
var single = remove ? this.removeListener : this.addListener; | ||
var multiple = remove ? this.removeListeners : this.addListeners; | ||
// If evt is an object then pass each of it's properties to this method | ||
if (typeof evt === 'object' && !(evt instanceof RegExp)) { | ||
for (i in evt) { | ||
if (evt.hasOwnProperty(i) && (value = evt[i])) { | ||
// Pass the single listener straight through to the singular method | ||
if (typeof value === 'function') { | ||
single.call(this, i, value); | ||
} | ||
else { | ||
// Otherwise pass back to the multiple function | ||
multiple.call(this, i, value); | ||
} | ||
} | ||
} | ||
} | ||
else { | ||
// So evt must be a string | ||
// And listeners must be an array of listeners | ||
// Loop over it and pass each one to the multiple method | ||
i = listeners.length; | ||
while (i--) { | ||
single.call(this, evt, listeners[i]); | ||
} | ||
} | ||
// If evt is an object then pass each of its properties to this method | ||
if (typeof evt === 'object' && !(evt instanceof RegExp)) { | ||
for (i in evt) { | ||
if (evt.hasOwnProperty(i) && (value = evt[i])) { | ||
// Pass the single listener straight through to the singular method | ||
if (typeof value === 'function') { | ||
single.call(this, i, value); | ||
} | ||
else { | ||
// Otherwise pass back to the multiple function | ||
multiple.call(this, i, value); | ||
} | ||
} | ||
} | ||
} | ||
else { | ||
// So evt must be a string | ||
// And listeners must be an array of listeners | ||
// Loop over it and pass each one to the multiple method | ||
i = listeners.length; | ||
while (i--) { | ||
single.call(this, evt, listeners[i]); | ||
} | ||
} | ||
return this; | ||
}; | ||
return this; | ||
}; | ||
/** | ||
* Removes all listeners from a specified event. | ||
* If you do not specify an event then all listeners will be removed. | ||
* That means every event will be emptied. | ||
* You can also pass a regex to remove all events that match it. | ||
* | ||
* @param {String|RegExp} [evt] Optional name of the event to remove all listeners for. Will remove from every event if not passed. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.removeEvent = function removeEvent(evt) { | ||
var type = typeof evt; | ||
var events = this._getEvents(); | ||
var key; | ||
/** | ||
* Removes all listeners from a specified event. | ||
* If you do not specify an event then all listeners will be removed. | ||
* That means every event will be emptied. | ||
* You can also pass a regex to remove all events that match it. | ||
* | ||
* @param {String|RegExp} [evt] Optional name of the event to remove all listeners for. Will remove from every event if not passed. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.removeEvent = function removeEvent(evt) { | ||
var type = typeof evt; | ||
var events = this._getEvents(); | ||
var key; | ||
// Remove different things depending on the state of evt | ||
if (type === 'string') { | ||
// Remove all listeners for the specified event | ||
delete events[evt]; | ||
} | ||
else if (type === 'object') { | ||
// Remove all events matching the regex. | ||
for (key in events) { | ||
if (events.hasOwnProperty(key) && evt.test(key)) { | ||
delete events[key]; | ||
} | ||
} | ||
} | ||
else { | ||
// Remove all listeners in all events | ||
delete this._events; | ||
} | ||
// Remove different things depending on the state of evt | ||
if (type === 'string') { | ||
// Remove all listeners for the specified event | ||
delete events[evt]; | ||
} | ||
else if (evt instanceof RegExp) { | ||
// Remove all events matching the regex. | ||
for (key in events) { | ||
if (events.hasOwnProperty(key) && evt.test(key)) { | ||
delete events[key]; | ||
} | ||
} | ||
} | ||
else { | ||
// Remove all listeners in all events | ||
delete this._events; | ||
} | ||
return this; | ||
}; | ||
return this; | ||
}; | ||
/** | ||
* Alias of removeEvent. | ||
* | ||
* Added to mirror the node API. | ||
*/ | ||
proto.removeAllListeners = alias('removeEvent'); | ||
/** | ||
* Alias of removeEvent. | ||
* | ||
* Added to mirror the node API. | ||
*/ | ||
proto.removeAllListeners = alias('removeEvent'); | ||
/** | ||
* Emits an event of your choice. | ||
* When emitted, every listener attached to that event will be executed. | ||
* If you pass the optional argument array then those arguments will be passed to every listener upon execution. | ||
* Because it uses `apply`, your array of arguments will be passed as if you wrote them out separately. | ||
* So they will not arrive within the array on the other side, they will be separate. | ||
* You can also pass a regular expression to emit to all events that match it. | ||
* | ||
* @param {String|RegExp} evt Name of the event to emit and execute listeners for. | ||
* @param {Array} [args] Optional array of arguments to be passed to each listener. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.emitEvent = function emitEvent(evt, args) { | ||
var listeners = this.getListenersAsObject(evt); | ||
var listener; | ||
var i; | ||
var key; | ||
var response; | ||
/** | ||
* Emits an event of your choice. | ||
* When emitted, every listener attached to that event will be executed. | ||
* If you pass the optional argument array then those arguments will be passed to every listener upon execution. | ||
* Because it uses `apply`, your array of arguments will be passed as if you wrote them out separately. | ||
* So they will not arrive within the array on the other side, they will be separate. | ||
* You can also pass a regular expression to emit to all events that match it. | ||
* | ||
* @param {String|RegExp} evt Name of the event to emit and execute listeners for. | ||
* @param {Array} [args] Optional array of arguments to be passed to each listener. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.emitEvent = function emitEvent(evt, args) { | ||
var listenersMap = this.getListenersAsObject(evt); | ||
var listeners; | ||
var listener; | ||
var i; | ||
var key; | ||
var response; | ||
for (key in listeners) { | ||
if (listeners.hasOwnProperty(key)) { | ||
i = listeners[key].length; | ||
for (key in listenersMap) { | ||
if (listenersMap.hasOwnProperty(key)) { | ||
listeners = listenersMap[key].slice(0); | ||
i = listeners.length; | ||
while (i--) { | ||
// If the listener returns true then it shall be removed from the event | ||
// The function is executed either with a basic call or an apply if there is an args array | ||
listener = listeners[key][i]; | ||
while (i--) { | ||
// If the listener returns true then it shall be removed from the event | ||
// The function is executed either with a basic call or an apply if there is an args array | ||
listener = listeners[i]; | ||
if (listener.once === true) { | ||
this.removeListener(evt, listener.listener); | ||
} | ||
if (listener.once === true) { | ||
this.removeListener(evt, listener.listener); | ||
} | ||
response = listener.listener.apply(this, args || []); | ||
response = listener.listener.apply(this, args || []); | ||
if (response === this._getOnceReturnValue()) { | ||
this.removeListener(evt, listener.listener); | ||
} | ||
} | ||
} | ||
} | ||
if (response === this._getOnceReturnValue()) { | ||
this.removeListener(evt, listener.listener); | ||
} | ||
} | ||
} | ||
} | ||
return this; | ||
}; | ||
return this; | ||
}; | ||
/** | ||
* Alias of emitEvent | ||
*/ | ||
proto.trigger = alias('emitEvent'); | ||
/** | ||
* Alias of emitEvent | ||
*/ | ||
proto.trigger = alias('emitEvent'); | ||
/** | ||
* Subtly different from emitEvent in that it will pass its arguments on to the listeners, as opposed to taking a single array of arguments to pass on. | ||
* As with emitEvent, you can pass a regex in place of the event name to emit to all events that match it. | ||
* | ||
* @param {String|RegExp} evt Name of the event to emit and execute listeners for. | ||
* @param {...*} Optional additional arguments to be passed to each listener. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.emit = function emit(evt) { | ||
var args = Array.prototype.slice.call(arguments, 1); | ||
return this.emitEvent(evt, args); | ||
}; | ||
/** | ||
* Subtly different from emitEvent in that it will pass its arguments on to the listeners, as opposed to taking a single array of arguments to pass on. | ||
* As with emitEvent, you can pass a regex in place of the event name to emit to all events that match it. | ||
* | ||
* @param {String|RegExp} evt Name of the event to emit and execute listeners for. | ||
* @param {...*} Optional additional arguments to be passed to each listener. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.emit = function emit(evt) { | ||
var args = Array.prototype.slice.call(arguments, 1); | ||
return this.emitEvent(evt, args); | ||
}; | ||
/** | ||
* Sets the current value to check against when executing listeners. If a | ||
* listeners return value matches the one set here then it will be removed | ||
* after execution. This value defaults to true. | ||
* | ||
* @param {*} value The new value to check for when executing listeners. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.setOnceReturnValue = function setOnceReturnValue(value) { | ||
this._onceReturnValue = value; | ||
return this; | ||
}; | ||
/** | ||
* Sets the current value to check against when executing listeners. If a | ||
* listeners return value matches the one set here then it will be removed | ||
* after execution. This value defaults to true. | ||
* | ||
* @param {*} value The new value to check for when executing listeners. | ||
* @return {Object} Current instance of EventEmitter for chaining. | ||
*/ | ||
proto.setOnceReturnValue = function setOnceReturnValue(value) { | ||
this._onceReturnValue = value; | ||
return this; | ||
}; | ||
/** | ||
* Fetches the current value to check against when executing listeners. If | ||
* the listeners return value matches this one then it should be removed | ||
* automatically. It will return true by default. | ||
* | ||
* @return {*|Boolean} The current value to check for or the default, true. | ||
* @api private | ||
*/ | ||
proto._getOnceReturnValue = function _getOnceReturnValue() { | ||
if (this.hasOwnProperty('_onceReturnValue')) { | ||
return this._onceReturnValue; | ||
} | ||
else { | ||
return true; | ||
} | ||
}; | ||
/** | ||
* Fetches the current value to check against when executing listeners. If | ||
* the listeners return value matches this one then it should be removed | ||
* automatically. It will return true by default. | ||
* | ||
* @return {*|Boolean} The current value to check for or the default, true. | ||
* @api private | ||
*/ | ||
proto._getOnceReturnValue = function _getOnceReturnValue() { | ||
if (this.hasOwnProperty('_onceReturnValue')) { | ||
return this._onceReturnValue; | ||
} | ||
else { | ||
return true; | ||
} | ||
}; | ||
/** | ||
* Fetches the events object and creates one if required. | ||
* | ||
* @return {Object} The events storage object. | ||
* @api private | ||
*/ | ||
proto._getEvents = function _getEvents() { | ||
return this._events || (this._events = {}); | ||
}; | ||
/** | ||
* Fetches the events object and creates one if required. | ||
* | ||
* @return {Object} The events storage object. | ||
* @api private | ||
*/ | ||
proto._getEvents = function _getEvents() { | ||
return this._events || (this._events = {}); | ||
}; | ||
/** | ||
* Reverts the global {@link EventEmitter} to its previous value and returns a reference to this version. | ||
* | ||
* @return {Function} Non conflicting EventEmitter class. | ||
*/ | ||
EventEmitter.noConflict = function noConflict() { | ||
exports.EventEmitter = originalGlobalValue; | ||
return EventEmitter; | ||
}; | ||
/** | ||
* Reverts the global {@link EventEmitter} to its previous value and returns a reference to this version. | ||
* | ||
* @return {Function} Non conflicting EventEmitter class. | ||
*/ | ||
EventEmitter.noConflict = function noConflict() { | ||
exports.EventEmitter = originalGlobalValue; | ||
return EventEmitter; | ||
}; | ||
// Expose the class either via AMD, CommonJS or the global object | ||
if (typeof define === 'function' && define.amd) { | ||
define('eventEmitter/EventEmitter',[],function () { | ||
return EventEmitter; | ||
}); | ||
} | ||
else if (typeof module === 'object' && module.exports){ | ||
module.exports = EventEmitter; | ||
} | ||
else { | ||
this.EventEmitter = EventEmitter; | ||
} | ||
// Expose the class either via AMD, CommonJS or the global object | ||
if (typeof define === 'function' && define.amd) { | ||
define('eventEmitter/EventEmitter',[],function () { | ||
return EventEmitter; | ||
}); | ||
} | ||
else if (typeof module === 'object' && module.exports){ | ||
module.exports = EventEmitter; | ||
} | ||
else { | ||
exports.EventEmitter = EventEmitter; | ||
} | ||
}.call(this)); | ||
/*! | ||
* eventie v1.0.4 | ||
* event binding helper | ||
* eventie.bind( elem, 'click', myFn ) | ||
* eventie.unbind( elem, 'click', myFn ) | ||
*/ | ||
/*jshint browser: true, undef: true, unused: true */ | ||
/*global define: false */ | ||
( function( window ) { | ||
var docElem = document.documentElement; | ||
var bind = function() {}; | ||
function getIEEvent( obj ) { | ||
var event = window.event; | ||
// add event.target | ||
event.target = event.target || event.srcElement || obj; | ||
return event; | ||
} | ||
if ( docElem.addEventListener ) { | ||
bind = function( obj, type, fn ) { | ||
obj.addEventListener( type, fn, false ); | ||
}; | ||
} else if ( docElem.attachEvent ) { | ||
bind = function( obj, type, fn ) { | ||
obj[ type + fn ] = fn.handleEvent ? | ||
function() { | ||
var event = getIEEvent( obj ); | ||
fn.handleEvent.call( fn, event ); | ||
} : | ||
function() { | ||
var event = getIEEvent( obj ); | ||
fn.call( obj, event ); | ||
}; | ||
obj.attachEvent( "on" + type, obj[ type + fn ] ); | ||
}; | ||
} | ||
var unbind = function() {}; | ||
if ( docElem.removeEventListener ) { | ||
unbind = function( obj, type, fn ) { | ||
obj.removeEventListener( type, fn, false ); | ||
}; | ||
} else if ( docElem.detachEvent ) { | ||
unbind = function( obj, type, fn ) { | ||
obj.detachEvent( "on" + type, obj[ type + fn ] ); | ||
try { | ||
delete obj[ type + fn ]; | ||
} catch ( err ) { | ||
// can't delete window object properties | ||
obj[ type + fn ] = undefined; | ||
} | ||
}; | ||
} | ||
var eventie = { | ||
bind: bind, | ||
unbind: unbind | ||
}; | ||
// transport | ||
if ( typeof define === 'function' && define.amd ) { | ||
// AMD | ||
define( 'eventie/eventie',eventie ); | ||
} else { | ||
// browser global | ||
window.eventie = eventie; | ||
} | ||
})( this ); | ||
/*! | ||
* imagesLoaded v3.2.0 | ||
* imagesLoaded v4.0.0 | ||
* JavaScript is all like "You images are done yet or what?" | ||
@@ -573,6 +497,5 @@ * MIT License | ||
define( [ | ||
'eventEmitter/EventEmitter', | ||
'eventie/eventie' | ||
], function( EventEmitter, eventie ) { | ||
return factory( window, EventEmitter, eventie ); | ||
'eventEmitter/EventEmitter' | ||
], function( EventEmitter ) { | ||
return factory( window, EventEmitter ); | ||
}); | ||
@@ -583,4 +506,3 @@ } else if ( typeof module == 'object' && module.exports ) { | ||
window, | ||
require('wolfy87-eventemitter'), | ||
require('eventie') | ||
require('wolfy87-eventemitter') | ||
); | ||
@@ -591,4 +513,3 @@ } else { | ||
window, | ||
window.EventEmitter, | ||
window.eventie | ||
window.EventEmitter | ||
); | ||
@@ -601,3 +522,3 @@ } | ||
function factory( window, EventEmitter, eventie ) { | ||
function factory( window, EventEmitter ) { | ||
@@ -619,11 +540,6 @@ | ||
var objToString = Object.prototype.toString; | ||
function isArray( obj ) { | ||
return objToString.call( obj ) == '[object Array]'; | ||
} | ||
// turn element or nodeList into an array | ||
function makeArray( obj ) { | ||
var ary = []; | ||
if ( isArray( obj ) ) { | ||
if ( Array.isArray( obj ) ) { | ||
// use object if already an array | ||
@@ -643,307 +559,301 @@ ary = obj; | ||
// -------------------------- imagesLoaded -------------------------- // | ||
// -------------------------- imagesLoaded -------------------------- // | ||
/** | ||
* @param {Array, Element, NodeList, String} elem | ||
* @param {Object or Function} options - if function, use as callback | ||
* @param {Function} onAlways - callback function | ||
*/ | ||
function ImagesLoaded( elem, options, onAlways ) { | ||
// coerce ImagesLoaded() without new, to be new ImagesLoaded() | ||
if ( !( this instanceof ImagesLoaded ) ) { | ||
return new ImagesLoaded( elem, options, onAlways ); | ||
} | ||
// use elem as selector string | ||
if ( typeof elem == 'string' ) { | ||
elem = document.querySelectorAll( elem ); | ||
} | ||
/** | ||
* @param {Array, Element, NodeList, String} elem | ||
* @param {Object or Function} options - if function, use as callback | ||
* @param {Function} onAlways - callback function | ||
*/ | ||
function ImagesLoaded( elem, options, onAlways ) { | ||
// coerce ImagesLoaded() without new, to be new ImagesLoaded() | ||
if ( !( this instanceof ImagesLoaded ) ) { | ||
return new ImagesLoaded( elem, options, onAlways ); | ||
} | ||
// use elem as selector string | ||
if ( typeof elem == 'string' ) { | ||
elem = document.querySelectorAll( elem ); | ||
} | ||
this.elements = makeArray( elem ); | ||
this.options = extend( {}, this.options ); | ||
this.elements = makeArray( elem ); | ||
this.options = extend( {}, this.options ); | ||
if ( typeof options == 'function' ) { | ||
onAlways = options; | ||
} else { | ||
extend( this.options, options ); | ||
} | ||
if ( typeof options == 'function' ) { | ||
onAlways = options; | ||
} else { | ||
extend( this.options, options ); | ||
} | ||
if ( onAlways ) { | ||
this.on( 'always', onAlways ); | ||
} | ||
if ( onAlways ) { | ||
this.on( 'always', onAlways ); | ||
} | ||
this.getImages(); | ||
this.getImages(); | ||
if ( $ ) { | ||
// add jQuery Deferred object | ||
this.jqDeferred = new $.Deferred(); | ||
} | ||
// HACK check async to allow time to bind listeners | ||
var _this = this; | ||
setTimeout( function() { | ||
_this.check(); | ||
}); | ||
if ( $ ) { | ||
// add jQuery Deferred object | ||
this.jqDeferred = new $.Deferred(); | ||
} | ||
ImagesLoaded.prototype = new EventEmitter(); | ||
// HACK check async to allow time to bind listeners | ||
setTimeout( function() { | ||
this.check(); | ||
}.bind( this )); | ||
} | ||
ImagesLoaded.prototype.options = {}; | ||
ImagesLoaded.prototype = Object.create( EventEmitter.prototype ); | ||
ImagesLoaded.prototype.getImages = function() { | ||
this.images = []; | ||
ImagesLoaded.prototype.options = {}; | ||
// filter & find items if we have an item selector | ||
for ( var i=0; i < this.elements.length; i++ ) { | ||
var elem = this.elements[i]; | ||
this.addElementImages( elem ); | ||
} | ||
}; | ||
ImagesLoaded.prototype.getImages = function() { | ||
this.images = []; | ||
/** | ||
* @param {Node} element | ||
*/ | ||
ImagesLoaded.prototype.addElementImages = function( elem ) { | ||
// filter siblings | ||
if ( elem.nodeName == 'IMG' ) { | ||
this.addImage( elem ); | ||
} | ||
// get background image on element | ||
if ( this.options.background === true ) { | ||
this.addElementBackgroundImages( elem ); | ||
} | ||
// filter & find items if we have an item selector | ||
this.elements.forEach( this.addElementImages, this ); | ||
}; | ||
// find children | ||
// no non-element nodes, #143 | ||
var nodeType = elem.nodeType; | ||
if ( !nodeType || !elementNodeTypes[ nodeType ] ) { | ||
return; | ||
} | ||
var childImgs = elem.querySelectorAll('img'); | ||
// concat childElems to filterFound array | ||
for ( var i=0; i < childImgs.length; i++ ) { | ||
var img = childImgs[i]; | ||
this.addImage( img ); | ||
} | ||
/** | ||
* @param {Node} element | ||
*/ | ||
ImagesLoaded.prototype.addElementImages = function( elem ) { | ||
// filter siblings | ||
if ( elem.nodeName == 'IMG' ) { | ||
this.addImage( elem ); | ||
} | ||
// get background image on element | ||
if ( this.options.background === true ) { | ||
this.addElementBackgroundImages( elem ); | ||
} | ||
// get child background images | ||
if ( typeof this.options.background == 'string' ) { | ||
var children = elem.querySelectorAll( this.options.background ); | ||
for ( i=0; i < children.length; i++ ) { | ||
var child = children[i]; | ||
this.addElementBackgroundImages( child ); | ||
} | ||
// find children | ||
// no non-element nodes, #143 | ||
var nodeType = elem.nodeType; | ||
if ( !nodeType || !elementNodeTypes[ nodeType ] ) { | ||
return; | ||
} | ||
var childImgs = elem.querySelectorAll('img'); | ||
// concat childElems to filterFound array | ||
for ( var i=0; i < childImgs.length; i++ ) { | ||
var img = childImgs[i]; | ||
this.addImage( img ); | ||
} | ||
// get child background images | ||
if ( typeof this.options.background == 'string' ) { | ||
var children = elem.querySelectorAll( this.options.background ); | ||
for ( i=0; i < children.length; i++ ) { | ||
var child = children[i]; | ||
this.addElementBackgroundImages( child ); | ||
} | ||
}; | ||
} | ||
}; | ||
var elementNodeTypes = { | ||
1: true, | ||
9: true, | ||
11: true | ||
}; | ||
var elementNodeTypes = { | ||
1: true, | ||
9: true, | ||
11: true | ||
}; | ||
ImagesLoaded.prototype.addElementBackgroundImages = function( elem ) { | ||
var style = getStyle( elem ); | ||
// get url inside url("...") | ||
var reURL = /url\(['"]*([^'"\)]+)['"]*\)/gi; | ||
var matches = reURL.exec( style.backgroundImage ); | ||
while ( matches !== null ) { | ||
var url = matches && matches[1]; | ||
if ( url ) { | ||
this.addBackground( url, elem ); | ||
} | ||
matches = reURL.exec( style.backgroundImage ); | ||
ImagesLoaded.prototype.addElementBackgroundImages = function( elem ) { | ||
var style = getComputedStyle( elem ); | ||
if ( !style ) { | ||
// Firefox returns null if in a hidden iframe https://bugzil.la/548397 | ||
return; | ||
} | ||
// get url inside url("...") | ||
var reURL = /url\((['"])?(.*?)\1\)/gi; | ||
var matches = reURL.exec( style.backgroundImage ); | ||
while ( matches !== null ) { | ||
var url = matches && matches[2]; | ||
if ( url ) { | ||
this.addBackground( url, elem ); | ||
} | ||
}; | ||
matches = reURL.exec( style.backgroundImage ); | ||
} | ||
}; | ||
// IE8 | ||
var getStyle = window.getComputedStyle || function( elem ) { | ||
return elem.currentStyle; | ||
}; | ||
/** | ||
* @param {Image} img | ||
*/ | ||
ImagesLoaded.prototype.addImage = function( img ) { | ||
var loadingImage = new LoadingImage( img ); | ||
this.images.push( loadingImage ); | ||
}; | ||
/** | ||
* @param {Image} img | ||
*/ | ||
ImagesLoaded.prototype.addImage = function( img ) { | ||
var loadingImage = new LoadingImage( img ); | ||
this.images.push( loadingImage ); | ||
}; | ||
ImagesLoaded.prototype.addBackground = function( url, elem ) { | ||
var background = new Background( url, elem ); | ||
this.images.push( background ); | ||
}; | ||
ImagesLoaded.prototype.addBackground = function( url, elem ) { | ||
var background = new Background( url, elem ); | ||
this.images.push( background ); | ||
}; | ||
ImagesLoaded.prototype.check = function() { | ||
var _this = this; | ||
this.progressedCount = 0; | ||
this.hasAnyBroken = false; | ||
// complete if no images | ||
if ( !this.images.length ) { | ||
this.complete(); | ||
return; | ||
} | ||
ImagesLoaded.prototype.check = function() { | ||
var _this = this; | ||
this.progressedCount = 0; | ||
this.hasAnyBroken = false; | ||
// complete if no images | ||
if ( !this.images.length ) { | ||
this.complete(); | ||
return; | ||
} | ||
function onProgress( image, elem, message ) { | ||
// HACK - Chrome triggers event before object properties have changed. #83 | ||
setTimeout( function() { | ||
_this.progress( image, elem, message ); | ||
}); | ||
} | ||
function onProgress( image, elem, message ) { | ||
// HACK - Chrome triggers event before object properties have changed. #83 | ||
setTimeout( function() { | ||
_this.progress( image, elem, message ); | ||
}); | ||
} | ||
this.images.forEach( function( loadingImage ) { | ||
loadingImage.once( 'progress', onProgress ); | ||
loadingImage.check(); | ||
}); | ||
}; | ||
for ( var i=0; i < this.images.length; i++ ) { | ||
var loadingImage = this.images[i]; | ||
loadingImage.once( 'progress', onProgress ); | ||
loadingImage.check(); | ||
} | ||
}; | ||
ImagesLoaded.prototype.progress = function( image, elem, message ) { | ||
this.progressedCount++; | ||
this.hasAnyBroken = this.hasAnyBroken || !image.isLoaded; | ||
// progress event | ||
this.emit( 'progress', this, image, elem ); | ||
if ( this.jqDeferred && this.jqDeferred.notify ) { | ||
this.jqDeferred.notify( this, image ); | ||
} | ||
// check if completed | ||
if ( this.progressedCount == this.images.length ) { | ||
this.complete(); | ||
} | ||
ImagesLoaded.prototype.progress = function( image, elem, message ) { | ||
this.progressedCount++; | ||
this.hasAnyBroken = this.hasAnyBroken || !image.isLoaded; | ||
// progress event | ||
this.emit( 'progress', this, image, elem ); | ||
if ( this.jqDeferred && this.jqDeferred.notify ) { | ||
this.jqDeferred.notify( this, image ); | ||
} | ||
// check if completed | ||
if ( this.progressedCount == this.images.length ) { | ||
this.complete(); | ||
} | ||
if ( this.options.debug && console ) { | ||
console.log( 'progress: ' + message, image, elem ); | ||
} | ||
}; | ||
if ( this.options.debug && console ) { | ||
console.log( 'progress: ' + message, image, elem ); | ||
} | ||
}; | ||
ImagesLoaded.prototype.complete = function() { | ||
var eventName = this.hasAnyBroken ? 'fail' : 'done'; | ||
this.isComplete = true; | ||
this.emit( eventName, this ); | ||
this.emit( 'always', this ); | ||
if ( this.jqDeferred ) { | ||
var jqMethod = this.hasAnyBroken ? 'reject' : 'resolve'; | ||
this.jqDeferred[ jqMethod ]( this ); | ||
} | ||
}; | ||
ImagesLoaded.prototype.complete = function() { | ||
var eventName = this.hasAnyBroken ? 'fail' : 'done'; | ||
this.isComplete = true; | ||
this.emit( eventName, this ); | ||
this.emit( 'always', this ); | ||
if ( this.jqDeferred ) { | ||
var jqMethod = this.hasAnyBroken ? 'reject' : 'resolve'; | ||
this.jqDeferred[ jqMethod ]( this ); | ||
} | ||
}; | ||
// -------------------------- -------------------------- // | ||
// -------------------------- -------------------------- // | ||
function LoadingImage( img ) { | ||
this.img = img; | ||
} | ||
function LoadingImage( img ) { | ||
this.img = img; | ||
LoadingImage.prototype = Object.create( EventEmitter.prototype ); | ||
LoadingImage.prototype.check = function() { | ||
// If complete is true and browser supports natural sizes, | ||
// try to check for image status manually. | ||
var isComplete = this.getIsImageComplete(); | ||
if ( isComplete ) { | ||
// report based on naturalWidth | ||
this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' ); | ||
return; | ||
} | ||
LoadingImage.prototype = new EventEmitter(); | ||
// If none of the checks above matched, simulate loading on detached element. | ||
this.proxyImage = new Image(); | ||
this.proxyImage.addEventListener( 'load', this ); | ||
this.proxyImage.addEventListener( 'error', this ); | ||
// bind to image as well for Firefox. #191 | ||
this.img.addEventListener( 'load', this ); | ||
this.img.addEventListener( 'error', this ); | ||
this.proxyImage.src = this.img.src; | ||
}; | ||
LoadingImage.prototype.check = function() { | ||
// If complete is true and browser supports natural sizes, | ||
// try to check for image status manually. | ||
var isComplete = this.getIsImageComplete(); | ||
if ( isComplete ) { | ||
// report based on naturalWidth | ||
this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' ); | ||
return; | ||
} | ||
LoadingImage.prototype.getIsImageComplete = function() { | ||
return this.img.complete && this.img.naturalWidth !== undefined; | ||
}; | ||
// If none of the checks above matched, simulate loading on detached element. | ||
this.proxyImage = new Image(); | ||
eventie.bind( this.proxyImage, 'load', this ); | ||
eventie.bind( this.proxyImage, 'error', this ); | ||
// bind to image as well for Firefox. #191 | ||
eventie.bind( this.img, 'load', this ); | ||
eventie.bind( this.img, 'error', this ); | ||
this.proxyImage.src = this.img.src; | ||
}; | ||
LoadingImage.prototype.confirm = function( isLoaded, message ) { | ||
this.isLoaded = isLoaded; | ||
this.emit( 'progress', this, this.img, message ); | ||
}; | ||
LoadingImage.prototype.getIsImageComplete = function() { | ||
return this.img.complete && this.img.naturalWidth !== undefined; | ||
}; | ||
// ----- events ----- // | ||
LoadingImage.prototype.confirm = function( isLoaded, message ) { | ||
this.isLoaded = isLoaded; | ||
this.emit( 'progress', this, this.img, message ); | ||
}; | ||
// trigger specified handler for event type | ||
LoadingImage.prototype.handleEvent = function( event ) { | ||
var method = 'on' + event.type; | ||
if ( this[ method ] ) { | ||
this[ method ]( event ); | ||
} | ||
}; | ||
// ----- events ----- // | ||
LoadingImage.prototype.onload = function() { | ||
this.confirm( true, 'onload' ); | ||
this.unbindEvents(); | ||
}; | ||
// trigger specified handler for event type | ||
LoadingImage.prototype.handleEvent = function( event ) { | ||
var method = 'on' + event.type; | ||
if ( this[ method ] ) { | ||
this[ method ]( event ); | ||
} | ||
}; | ||
LoadingImage.prototype.onerror = function() { | ||
this.confirm( false, 'onerror' ); | ||
this.unbindEvents(); | ||
}; | ||
LoadingImage.prototype.onload = function() { | ||
this.confirm( true, 'onload' ); | ||
this.unbindEvents(); | ||
}; | ||
LoadingImage.prototype.unbindEvents = function() { | ||
this.proxyImage.removeEventListener( 'load', this ); | ||
this.proxyImage.removeEventListener( 'error', this ); | ||
this.img.removeEventListener( 'load', this ); | ||
this.img.removeEventListener( 'error', this ); | ||
}; | ||
LoadingImage.prototype.onerror = function() { | ||
this.confirm( false, 'onerror' ); | ||
this.unbindEvents(); | ||
}; | ||
// -------------------------- Background -------------------------- // | ||
LoadingImage.prototype.unbindEvents = function() { | ||
eventie.unbind( this.proxyImage, 'load', this ); | ||
eventie.unbind( this.proxyImage, 'error', this ); | ||
eventie.unbind( this.img, 'load', this ); | ||
eventie.unbind( this.img, 'error', this ); | ||
}; | ||
function Background( url, element ) { | ||
this.url = url; | ||
this.element = element; | ||
this.img = new Image(); | ||
} | ||
// -------------------------- Background -------------------------- // | ||
// inherit LoadingImage prototype | ||
Background.prototype = Object.create( LoadingImage.prototype ); | ||
function Background( url, element ) { | ||
this.url = url; | ||
this.element = element; | ||
this.img = new Image(); | ||
Background.prototype.check = function() { | ||
this.img.addEventListener( 'load', this ); | ||
this.img.addEventListener( 'error', this ); | ||
this.img.src = this.url; | ||
// check if image is already complete | ||
var isComplete = this.getIsImageComplete(); | ||
if ( isComplete ) { | ||
this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' ); | ||
this.unbindEvents(); | ||
} | ||
}; | ||
// inherit LoadingImage prototype | ||
Background.prototype = new LoadingImage(); | ||
Background.prototype.unbindEvents = function() { | ||
this.img.addEventListener( 'load', this ); | ||
this.img.addEventListener( 'error', this ); | ||
}; | ||
Background.prototype.check = function() { | ||
eventie.bind( this.img, 'load', this ); | ||
eventie.bind( this.img, 'error', this ); | ||
this.img.src = this.url; | ||
// check if image is already complete | ||
var isComplete = this.getIsImageComplete(); | ||
if ( isComplete ) { | ||
this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' ); | ||
this.unbindEvents(); | ||
} | ||
}; | ||
Background.prototype.confirm = function( isLoaded, message ) { | ||
this.isLoaded = isLoaded; | ||
this.emit( 'progress', this, this.element, message ); | ||
}; | ||
Background.prototype.unbindEvents = function() { | ||
eventie.unbind( this.img, 'load', this ); | ||
eventie.unbind( this.img, 'error', this ); | ||
}; | ||
// -------------------------- jQuery -------------------------- // | ||
Background.prototype.confirm = function( isLoaded, message ) { | ||
this.isLoaded = isLoaded; | ||
this.emit( 'progress', this, this.element, message ); | ||
ImagesLoaded.makeJQueryPlugin = function( jQuery ) { | ||
jQuery = jQuery || window.jQuery; | ||
if ( !jQuery ) { | ||
return; | ||
} | ||
// set local variable | ||
$ = jQuery; | ||
// $().imagesLoaded() | ||
$.fn.imagesLoaded = function( options, callback ) { | ||
var instance = new ImagesLoaded( this, options, callback ); | ||
return instance.jqDeferred.promise( $(this) ); | ||
}; | ||
}; | ||
// try making plugin | ||
ImagesLoaded.makeJQueryPlugin(); | ||
// -------------------------- jQuery -------------------------- // | ||
// -------------------------- -------------------------- // | ||
ImagesLoaded.makeJQueryPlugin = function( jQuery ) { | ||
jQuery = jQuery || window.jQuery; | ||
if ( !jQuery ) { | ||
return; | ||
} | ||
// set local variable | ||
$ = jQuery; | ||
// $().imagesLoaded() | ||
$.fn.imagesLoaded = function( options, callback ) { | ||
var instance = new ImagesLoaded( this, options, callback ); | ||
return instance.jqDeferred.promise( $(this) ); | ||
}; | ||
}; | ||
// try making plugin | ||
ImagesLoaded.makeJQueryPlugin(); | ||
return ImagesLoaded; | ||
// -------------------------- -------------------------- // | ||
return ImagesLoaded; | ||
}); | ||
/*! | ||
* imagesLoaded PACKAGED v3.2.0 | ||
* imagesLoaded PACKAGED v4.0.0 | ||
* JavaScript is all like "You images are done yet or what?" | ||
@@ -7,2 +7,2 @@ * MIT License | ||
(function(){"use strict";function e(){}function t(e,t){for(var n=e.length;n--;)if(e[n].listener===t)return n;return-1}function n(e){return function(){return this[e].apply(this,arguments)}}var i=e.prototype,r=this,s=r.EventEmitter;i.getListeners=function(e){var t,n,i=this._getEvents();if("object"==typeof e){t={};for(n in i)i.hasOwnProperty(n)&&e.test(n)&&(t[n]=i[n])}else t=i[e]||(i[e]=[]);return t},i.flattenListeners=function(e){var t,n=[];for(t=0;t<e.length;t+=1)n.push(e[t].listener);return n},i.getListenersAsObject=function(e){var t,n=this.getListeners(e);return n instanceof Array&&(t={},t[e]=n),t||n},i.addListener=function(e,n){var i,r=this.getListenersAsObject(e),s="object"==typeof n;for(i in r)r.hasOwnProperty(i)&&-1===t(r[i],n)&&r[i].push(s?n:{listener:n,once:!1});return this},i.on=n("addListener"),i.addOnceListener=function(e,t){return this.addListener(e,{listener:t,once:!0})},i.once=n("addOnceListener"),i.defineEvent=function(e){return this.getListeners(e),this},i.defineEvents=function(e){for(var t=0;t<e.length;t+=1)this.defineEvent(e[t]);return this},i.removeListener=function(e,n){var i,r,s=this.getListenersAsObject(e);for(r in s)s.hasOwnProperty(r)&&(i=t(s[r],n),-1!==i&&s[r].splice(i,1));return this},i.off=n("removeListener"),i.addListeners=function(e,t){return this.manipulateListeners(!1,e,t)},i.removeListeners=function(e,t){return this.manipulateListeners(!0,e,t)},i.manipulateListeners=function(e,t,n){var i,r,s=e?this.removeListener:this.addListener,o=e?this.removeListeners:this.addListeners;if("object"!=typeof t||t instanceof RegExp)for(i=n.length;i--;)s.call(this,t,n[i]);else for(i in t)t.hasOwnProperty(i)&&(r=t[i])&&("function"==typeof r?s.call(this,i,r):o.call(this,i,r));return this},i.removeEvent=function(e){var t,n=typeof e,i=this._getEvents();if("string"===n)delete i[e];else if("object"===n)for(t in i)i.hasOwnProperty(t)&&e.test(t)&&delete i[t];else delete this._events;return this},i.removeAllListeners=n("removeEvent"),i.emitEvent=function(e,t){var n,i,r,s,o=this.getListenersAsObject(e);for(r in o)if(o.hasOwnProperty(r))for(i=o[r].length;i--;)n=o[r][i],n.once===!0&&this.removeListener(e,n.listener),s=n.listener.apply(this,t||[]),s===this._getOnceReturnValue()&&this.removeListener(e,n.listener);return this},i.trigger=n("emitEvent"),i.emit=function(e){var t=Array.prototype.slice.call(arguments,1);return this.emitEvent(e,t)},i.setOnceReturnValue=function(e){return this._onceReturnValue=e,this},i._getOnceReturnValue=function(){return this.hasOwnProperty("_onceReturnValue")?this._onceReturnValue:!0},i._getEvents=function(){return this._events||(this._events={})},e.noConflict=function(){return r.EventEmitter=s,e},"function"==typeof define&&define.amd?define("eventEmitter/EventEmitter",[],function(){return e}):"object"==typeof module&&module.exports?module.exports=e:this.EventEmitter=e}).call(this),function(e){function t(t){var n=e.event;return n.target=n.target||n.srcElement||t,n}var n=document.documentElement,i=function(){};n.addEventListener?i=function(e,t,n){e.addEventListener(t,n,!1)}:n.attachEvent&&(i=function(e,n,i){e[n+i]=i.handleEvent?function(){var n=t(e);i.handleEvent.call(i,n)}:function(){var n=t(e);i.call(e,n)},e.attachEvent("on"+n,e[n+i])});var r=function(){};n.removeEventListener?r=function(e,t,n){e.removeEventListener(t,n,!1)}:n.detachEvent&&(r=function(e,t,n){e.detachEvent("on"+t,e[t+n]);try{delete e[t+n]}catch(i){e[t+n]=void 0}});var s={bind:i,unbind:r};"function"==typeof define&&define.amd?define("eventie/eventie",s):e.eventie=s}(this),function(e,t){"use strict";"function"==typeof define&&define.amd?define(["eventEmitter/EventEmitter","eventie/eventie"],function(n,i){return t(e,n,i)}):"object"==typeof module&&module.exports?module.exports=t(e,require("wolfy87-eventemitter"),require("eventie")):e.imagesLoaded=t(e,e.EventEmitter,e.eventie)}(window,function(e,t,n){function i(e,t){for(var n in t)e[n]=t[n];return e}function r(e){return"[object Array]"==f.call(e)}function s(e){var t=[];if(r(e))t=e;else if("number"==typeof e.length)for(var n=0;n<e.length;n++)t.push(e[n]);else t.push(e);return t}function o(e,t,n){if(!(this instanceof o))return new o(e,t,n);"string"==typeof e&&(e=document.querySelectorAll(e)),this.elements=s(e),this.options=i({},this.options),"function"==typeof t?n=t:i(this.options,t),n&&this.on("always",n),this.getImages(),u&&(this.jqDeferred=new u.Deferred);var r=this;setTimeout(function(){r.check()})}function h(e){this.img=e}function a(e,t){this.url=e,this.element=t,this.img=new Image}var u=e.jQuery,c=e.console,f=Object.prototype.toString;o.prototype=new t,o.prototype.options={},o.prototype.getImages=function(){this.images=[];for(var e=0;e<this.elements.length;e++){var t=this.elements[e];this.addElementImages(t)}},o.prototype.addElementImages=function(e){"IMG"==e.nodeName&&this.addImage(e),this.options.background===!0&&this.addElementBackgroundImages(e);var t=e.nodeType;if(t&&d[t]){for(var n=e.querySelectorAll("img"),i=0;i<n.length;i++){var r=n[i];this.addImage(r)}if("string"==typeof this.options.background){var s=e.querySelectorAll(this.options.background);for(i=0;i<s.length;i++){var o=s[i];this.addElementBackgroundImages(o)}}}};var d={1:!0,9:!0,11:!0};o.prototype.addElementBackgroundImages=function(e){for(var t=m(e),n=/url\(['"]*([^'"\)]+)['"]*\)/gi,i=n.exec(t.backgroundImage);null!==i;){var r=i&&i[1];r&&this.addBackground(r,e),i=n.exec(t.backgroundImage)}};var m=e.getComputedStyle||function(e){return e.currentStyle};return o.prototype.addImage=function(e){var t=new h(e);this.images.push(t)},o.prototype.addBackground=function(e,t){var n=new a(e,t);this.images.push(n)},o.prototype.check=function(){function e(e,n,i){setTimeout(function(){t.progress(e,n,i)})}var t=this;if(this.progressedCount=0,this.hasAnyBroken=!1,!this.images.length)return void this.complete();for(var n=0;n<this.images.length;n++){var i=this.images[n];i.once("progress",e),i.check()}},o.prototype.progress=function(e,t,n){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!e.isLoaded,this.emit("progress",this,e,t),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,e),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&c&&c.log("progress: "+n,e,t)},o.prototype.complete=function(){var e=this.hasAnyBroken?"fail":"done";if(this.isComplete=!0,this.emit(e,this),this.emit("always",this),this.jqDeferred){var t=this.hasAnyBroken?"reject":"resolve";this.jqDeferred[t](this)}},h.prototype=new t,h.prototype.check=function(){var e=this.getIsImageComplete();return e?void this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,n.bind(this.proxyImage,"load",this),n.bind(this.proxyImage,"error",this),n.bind(this.img,"load",this),n.bind(this.img,"error",this),void(this.proxyImage.src=this.img.src))},h.prototype.getIsImageComplete=function(){return this.img.complete&&void 0!==this.img.naturalWidth},h.prototype.confirm=function(e,t){this.isLoaded=e,this.emit("progress",this,this.img,t)},h.prototype.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},h.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},h.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},h.prototype.unbindEvents=function(){n.unbind(this.proxyImage,"load",this),n.unbind(this.proxyImage,"error",this),n.unbind(this.img,"load",this),n.unbind(this.img,"error",this)},a.prototype=new h,a.prototype.check=function(){n.bind(this.img,"load",this),n.bind(this.img,"error",this),this.img.src=this.url;var e=this.getIsImageComplete();e&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},a.prototype.unbindEvents=function(){n.unbind(this.img,"load",this),n.unbind(this.img,"error",this)},a.prototype.confirm=function(e,t){this.isLoaded=e,this.emit("progress",this,this.element,t)},o.makeJQueryPlugin=function(t){t=t||e.jQuery,t&&(u=t,u.fn.imagesLoaded=function(e,t){var n=new o(this,e,t);return n.jqDeferred.promise(u(this))})},o.makeJQueryPlugin(),o}); | ||
(function(){"use strict";function e(){}function t(e,t){for(var n=e.length;n--;)if(e[n].listener===t)return n;return-1}function n(e){return function(){return this[e].apply(this,arguments)}}var i=e.prototype,r=this,s=r.EventEmitter;i.getListeners=function(e){var t,n,i=this._getEvents();if(e instanceof RegExp){t={};for(n in i)i.hasOwnProperty(n)&&e.test(n)&&(t[n]=i[n])}else t=i[e]||(i[e]=[]);return t},i.flattenListeners=function(e){var t,n=[];for(t=0;t<e.length;t+=1)n.push(e[t].listener);return n},i.getListenersAsObject=function(e){var t,n=this.getListeners(e);return n instanceof Array&&(t={},t[e]=n),t||n},i.addListener=function(e,n){var i,r=this.getListenersAsObject(e),s="object"==typeof n;for(i in r)r.hasOwnProperty(i)&&-1===t(r[i],n)&&r[i].push(s?n:{listener:n,once:!1});return this},i.on=n("addListener"),i.addOnceListener=function(e,t){return this.addListener(e,{listener:t,once:!0})},i.once=n("addOnceListener"),i.defineEvent=function(e){return this.getListeners(e),this},i.defineEvents=function(e){for(var t=0;t<e.length;t+=1)this.defineEvent(e[t]);return this},i.removeListener=function(e,n){var i,r,s=this.getListenersAsObject(e);for(r in s)s.hasOwnProperty(r)&&(i=t(s[r],n),-1!==i&&s[r].splice(i,1));return this},i.off=n("removeListener"),i.addListeners=function(e,t){return this.manipulateListeners(!1,e,t)},i.removeListeners=function(e,t){return this.manipulateListeners(!0,e,t)},i.manipulateListeners=function(e,t,n){var i,r,s=e?this.removeListener:this.addListener,o=e?this.removeListeners:this.addListeners;if("object"!=typeof t||t instanceof RegExp)for(i=n.length;i--;)s.call(this,t,n[i]);else for(i in t)t.hasOwnProperty(i)&&(r=t[i])&&("function"==typeof r?s.call(this,i,r):o.call(this,i,r));return this},i.removeEvent=function(e){var t,n=typeof e,i=this._getEvents();if("string"===n)delete i[e];else if(e instanceof RegExp)for(t in i)i.hasOwnProperty(t)&&e.test(t)&&delete i[t];else delete this._events;return this},i.removeAllListeners=n("removeEvent"),i.emitEvent=function(e,t){var n,i,r,s,o,h=this.getListenersAsObject(e);for(s in h)if(h.hasOwnProperty(s))for(n=h[s].slice(0),r=n.length;r--;)i=n[r],i.once===!0&&this.removeListener(e,i.listener),o=i.listener.apply(this,t||[]),o===this._getOnceReturnValue()&&this.removeListener(e,i.listener);return this},i.trigger=n("emitEvent"),i.emit=function(e){var t=Array.prototype.slice.call(arguments,1);return this.emitEvent(e,t)},i.setOnceReturnValue=function(e){return this._onceReturnValue=e,this},i._getOnceReturnValue=function(){return this.hasOwnProperty("_onceReturnValue")?this._onceReturnValue:!0},i._getEvents=function(){return this._events||(this._events={})},e.noConflict=function(){return r.EventEmitter=s,e},"function"==typeof define&&define.amd?define("eventEmitter/EventEmitter",[],function(){return e}):"object"==typeof module&&module.exports?module.exports=e:r.EventEmitter=e}).call(this),function(e,t){"use strict";"function"==typeof define&&define.amd?define(["eventEmitter/EventEmitter"],function(n){return t(e,n)}):"object"==typeof module&&module.exports?module.exports=t(e,require("wolfy87-eventemitter")):e.imagesLoaded=t(e,e.EventEmitter)}(window,function(e,t){function n(e,t){for(var n in t)e[n]=t[n];return e}function i(e){var t=[];if(Array.isArray(e))t=e;else if("number"==typeof e.length)for(var n=0;n<e.length;n++)t.push(e[n]);else t.push(e);return t}function r(e,t,s){return this instanceof r?("string"==typeof e&&(e=document.querySelectorAll(e)),this.elements=i(e),this.options=n({},this.options),"function"==typeof t?s=t:n(this.options,t),s&&this.on("always",s),this.getImages(),h&&(this.jqDeferred=new h.Deferred),void setTimeout(function(){this.check()}.bind(this))):new r(e,t,s)}function s(e){this.img=e}function o(e,t){this.url=e,this.element=t,this.img=new Image}var h=e.jQuery,a=e.console;r.prototype=Object.create(t.prototype),r.prototype.options={},r.prototype.getImages=function(){this.images=[],this.elements.forEach(this.addElementImages,this)},r.prototype.addElementImages=function(e){"IMG"==e.nodeName&&this.addImage(e),this.options.background===!0&&this.addElementBackgroundImages(e);var t=e.nodeType;if(t&&u[t]){for(var n=e.querySelectorAll("img"),i=0;i<n.length;i++){var r=n[i];this.addImage(r)}if("string"==typeof this.options.background){var s=e.querySelectorAll(this.options.background);for(i=0;i<s.length;i++){var o=s[i];this.addElementBackgroundImages(o)}}}};var u={1:!0,9:!0,11:!0};return r.prototype.addElementBackgroundImages=function(e){var t=getComputedStyle(e);if(t)for(var n=/url\((['"])?(.*?)\1\)/gi,i=n.exec(t.backgroundImage);null!==i;){var r=i&&i[2];r&&this.addBackground(r,e),i=n.exec(t.backgroundImage)}},r.prototype.addImage=function(e){var t=new s(e);this.images.push(t)},r.prototype.addBackground=function(e,t){var n=new o(e,t);this.images.push(n)},r.prototype.check=function(){function e(e,n,i){setTimeout(function(){t.progress(e,n,i)})}var t=this;return this.progressedCount=0,this.hasAnyBroken=!1,this.images.length?void this.images.forEach(function(t){t.once("progress",e),t.check()}):void this.complete()},r.prototype.progress=function(e,t,n){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!e.isLoaded,this.emit("progress",this,e,t),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,e),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&a&&a.log("progress: "+n,e,t)},r.prototype.complete=function(){var e=this.hasAnyBroken?"fail":"done";if(this.isComplete=!0,this.emit(e,this),this.emit("always",this),this.jqDeferred){var t=this.hasAnyBroken?"reject":"resolve";this.jqDeferred[t](this)}},s.prototype=Object.create(t.prototype),s.prototype.check=function(){var e=this.getIsImageComplete();return e?void this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,this.proxyImage.addEventListener("load",this),this.proxyImage.addEventListener("error",this),this.img.addEventListener("load",this),this.img.addEventListener("error",this),void(this.proxyImage.src=this.img.src))},s.prototype.getIsImageComplete=function(){return this.img.complete&&void 0!==this.img.naturalWidth},s.prototype.confirm=function(e,t){this.isLoaded=e,this.emit("progress",this,this.img,t)},s.prototype.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},s.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},s.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},s.prototype.unbindEvents=function(){this.proxyImage.removeEventListener("load",this),this.proxyImage.removeEventListener("error",this),this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},o.prototype=Object.create(s.prototype),o.prototype.check=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.img.src=this.url;var e=this.getIsImageComplete();e&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},o.prototype.unbindEvents=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this)},o.prototype.confirm=function(e,t){this.isLoaded=e,this.emit("progress",this,this.element,t)},r.makeJQueryPlugin=function(t){t=t||e.jQuery,t&&(h=t,h.fn.imagesLoaded=function(e,t){var n=new r(this,e,t);return n.jqDeferred.promise(h(this))})},r.makeJQueryPlugin(),r}); |
{ | ||
"name": "imagesloaded", | ||
"version": "3.2.0", | ||
"version": "4.0.0", | ||
"description": "You images done yet or what?", | ||
"main": "imagesloaded.js", | ||
"dependencies": { | ||
"wolfy87-eventemitter": ">=4.2 <5.0", | ||
"eventie": "~1.0.4" | ||
"wolfy87-eventemitter": ">=4.2 <5.0" | ||
}, | ||
@@ -10,0 +9,0 @@ "devDependencies": { |
@@ -21,5 +21,5 @@ # imagesLoaded | ||
``` html | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.imagesloaded/3.2.0/imagesloaded.pkgd.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.imagesloaded/4.0.0/imagesloaded.pkgd.min.js"></script> | ||
<!-- or --> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.imagesloaded/3.2.0/imagesloaded.pkgd.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.imagesloaded/4.0.0/imagesloaded.pkgd.js"></script> | ||
``` | ||
@@ -132,2 +132,4 @@ | ||
[See jQuery demo](http://codepen.io/desandro/pen/pjVMPB) or [vanilla JS demo](http://codepen.io/desandro/pen/avKooW) on CodePen. | ||
Set to a selector string like `{ background: '.item' }` to detect when the background images of child elements have loaded. | ||
@@ -147,2 +149,4 @@ | ||
[See jQuery demo](http://codepen.io/desandro/pen/avKoZL) or [vanilla JS demo](http://codepen.io/desandro/pen/vNrBGz) on CodePen. | ||
## Events | ||
@@ -292,3 +296,3 @@ | ||
(This is hack is required because of an issue with how Webpack loads dependencies. [+1 this issue on GitHub](https://github.com/webpack/webpack/issues/883) to help get this issue addressed.) | ||
(This hack is required because of an issue with how Webpack loads dependencies. [+1 this issue on GitHub](https://github.com/webpack/webpack/issues/883) to help get this issue addressed.) | ||
@@ -373,3 +377,3 @@ You can then `require('imagesloaded')`. | ||
+ IE8+ | ||
+ IE9+ | ||
+ Android 2.3+ | ||
@@ -379,8 +383,6 @@ + iOS Safari 4+ | ||
## Contributors | ||
Use [imagesLoaded v3](http://imagesloaded.desandro.com/v3/) for IE8 support. | ||
This project has a [storied legacy](https://github.com/desandro/imagesloaded/graphs/contributors). Its current incarnation was developed by [Tomas Sardyha @Darsain](http://darsa.in/) and [David DeSandro @desandro](http://desandro.com). | ||
## MIT License | ||
imagesLoaded is released under the [MIT License](http://desandro.mit-license.org/). Have at it. |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
319822
1
36
383
1621
- Removedeventie@~1.0.4
- Removedeventie@1.0.6(transitive)