update packaged files

This commit is contained in:
David DeSandro
2013-05-27 10:00:24 -04:00
parent 5633aca377
commit d94240b036
2 changed files with 11 additions and 6 deletions

View File

@@ -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?"
*/

File diff suppressed because one or more lines are too long