jsor / lity

Lightweight, accessible and responsive lightbox.
https://sorgalla.com/lity/
MIT License
1.16k stars 196 forks source link

Can i listen for open/close events? #195

Closed squadjot closed 6 years ago

squadjot commented 6 years ago

Can i listen for open/close events?

jsor commented 6 years ago

Yes, see the README.

squadjot commented 6 years ago

Ahh..awesome, thanks!

 $(document).on('lity:close', function(event, instance) {
      console.log('Lightbox closed');
  });

  $(document).on('lity:open', function(event, instance) {
      console.log('Lightbox opened');
  });