@@ -19,7 +19,7 @@ export class DeckdeckgoSlideUtils {
1919 return ;
2020 }
2121
22- const elements : NodeListOf < HTMLElement > = el . querySelectorAll ( revealShowFirst ? '[slot] li:not(:first-child), [slot] > p:not(:first-child), [slot] > span:not(:first-child), [slot] > img:not(:first-child)' : '[slot] li, [slot] > p, [slot] > span, [slot] > img' ) ;
22+ const elements : NodeListOf < HTMLElement > = el . querySelectorAll ( revealShowFirst ? '[slot] li:not(:first-child), [slot] > p:not(:first-child), [slot] > span:not(:first-child), [slot] > img:not(:first-child), [slot] > deckgo-lazy-img:not(:first-child) ' : '[slot] li, [slot] > p, [slot] > span, [slot] > img, [slot] > deckgo-lazy- img' ) ;
2323
2424 if ( ! elements ) {
2525 resolve ( ) ;
@@ -39,7 +39,7 @@ export class DeckdeckgoSlideUtils {
3939
4040 private static showRevealElement ( el : HTMLElement ) : Promise < boolean > {
4141 return new Promise < boolean > ( ( resolve ) => {
42- const elements : NodeListOf < HTMLElement > = el . querySelectorAll ( '[slot] li, [slot] > p, [slot] > span, [slot] > img' ) ;
42+ const elements : NodeListOf < HTMLElement > = el . querySelectorAll ( '[slot] li, [slot] > p, [slot] > span, [slot] > img, [slot] > deckgo-lazy-img ' ) ;
4343
4444 let couldSwipe : boolean = true ;
4545
@@ -62,7 +62,7 @@ export class DeckdeckgoSlideUtils {
6262
6363 private static hideRevealElement ( el : HTMLElement ) : Promise < boolean > {
6464 return new Promise < boolean > ( ( resolve ) => {
65- const elements : NodeListOf < HTMLElement > = el . querySelectorAll ( '[slot] li, [slot] > p, [slot] > span, [slot] > img' ) ;
65+ const elements : NodeListOf < HTMLElement > = el . querySelectorAll ( '[slot] li, [slot] > p, [slot] > span, [slot] > img, [slot] > deckgo-lazy-img ' ) ;
6666
6767 let couldSwipe : boolean = true ;
6868
0 commit comments