mirror of
https://github.com/desandro/imagesloaded.git
synced 2026-01-14 17:07:55 -05:00
11 lines
323 B
JavaScript
11 lines
323 B
JavaScript
test( 'single element', function() {
|
|
var elem = document.querySelector('#mario-with-shell');
|
|
stop();
|
|
imagesLoaded( elem ).on( 'done', function( obj ) {
|
|
ok( true, 'single element worked' );
|
|
ok( obj.images, 'argument has images' );
|
|
equal( obj.images.length, 1, 'images.length = 1' );
|
|
start();
|
|
});
|
|
});
|