mirror of
https://github.com/desandro/imagesloaded.git
synced 2026-05-09 03:00:29 -04:00
update packaged files
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* imagesLoaded v3.0.0 beta
|
||||
* imagesLoaded v3.0.0
|
||||
* JavaScript is all like "You images are done yet or what?"
|
||||
*/
|
||||
|
||||
@@ -385,7 +385,7 @@
|
||||
}
|
||||
}(this));
|
||||
/*!
|
||||
* eventie v1.0.2
|
||||
* eventie v1.0.3
|
||||
* event binding helper
|
||||
* eventie.bind( elem, 'click', myFn )
|
||||
* eventie.unbind( elem, 'click', myFn )
|
||||
@@ -434,7 +434,12 @@ if ( docElem.removeEventListener ) {
|
||||
} else if ( docElem.detachEvent ) {
|
||||
unbind = function( obj, type, fn ) {
|
||||
obj.detachEvent( "on" + type, obj[ type + fn ] );
|
||||
delete obj[ type + fn ];
|
||||
try {
|
||||
delete obj[ type + fn ];
|
||||
} catch ( err ) {
|
||||
// can't delete window object properties
|
||||
obj[ type + fn ] = undefined;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
@@ -455,7 +460,7 @@ if ( typeof define === 'function' && define.amd ) {
|
||||
})( this );
|
||||
|
||||
/*!
|
||||
* imagesLoaded v3.0.0 beta
|
||||
* imagesLoaded v3.0.0
|
||||
* JavaScript is all like "You images are done yet or what?"
|
||||
*/
|
||||
|
||||
|
||||
4
imagesloaded.pkgd.min.js
vendored
4
imagesloaded.pkgd.min.js
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user