aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/desandro/imagesloaded/test/unit/selector-string.js
diff options
context:
space:
mode:
authorM. Dent <dentm42@gmail.com>2018-11-28 03:52:53 +0100
committerM. Dent <dentm42@gmail.com>2018-11-28 03:52:53 +0100
commita4b2eac0f0d4377df2a87743494a1b9fa5ec071c (patch)
tree000e6af7a302eacd009aa5ef6548c52b0dfe4a30 /vendor/desandro/imagesloaded/test/unit/selector-string.js
parent0bd38290e6ef65d628e687ea86a13e15a38997af (diff)
parentc667572d3eedb0c31b29a4c469b378ccdcee0ba1 (diff)
downloadvolse-hubzilla-a4b2eac0f0d4377df2a87743494a1b9fa5ec071c.tar.gz
volse-hubzilla-a4b2eac0f0d4377df2a87743494a1b9fa5ec071c.tar.bz2
volse-hubzilla-a4b2eac0f0d4377df2a87743494a1b9fa5ec071c.zip
Merge branch 'update-imagesloaded' into 'dev'
update imagesloaded to version 4.1.4 via composer See merge request hubzilla/core!1407
Diffstat (limited to 'vendor/desandro/imagesloaded/test/unit/selector-string.js')
-rw-r--r--vendor/desandro/imagesloaded/test/unit/selector-string.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/desandro/imagesloaded/test/unit/selector-string.js b/vendor/desandro/imagesloaded/test/unit/selector-string.js
new file mode 100644
index 000000000..8c43c4bef
--- /dev/null
+++ b/vendor/desandro/imagesloaded/test/unit/selector-string.js
@@ -0,0 +1,12 @@
+QUnit.test( 'selector string', function( assert ) {
+ 'use strict';
+ var images = document.querySelectorAll('#basics img');
+ var done = assert.async();
+ var imgLoad = imagesLoaded('#basics', { debug: true }).on( 'done', function( obj ) {
+ assert.ok( true, 'selector string worked' );
+ assert.ok( obj.images, 'argument has images' );
+ assert.equal( obj.images.length, images.length, 'images.length matches' );
+ done();
+ });
+ assert.ok( imgLoad.options.debug, 'debug option set' );
+});