thinker3197 / progressively

A JavaScript library to load images progressively 🌇
https://thinker3197.github.io/progressively
MIT License
698 stars 68 forks source link

Not working on Bootstrap modal. #31

Open pedramvdl31 opened 5 years ago

pedramvdl31 commented 5 years ago

images that are in modal not being shown.

Sebiworld commented 5 years ago

Hi @pedramvdl31 , you can manually call progressively's render function to make it work in bootstrap-modals. It has to be called after the modal is shown:

progressively.init();
$('#myModal').on("shown.bs.modal", function(e) {
    progressively.render();
});