progressively icon indicating copy to clipboard operation
progressively copied to clipboard

Not working on Bootstrap modal.

Open pedramvdl31 opened this issue 5 years ago • 1 comments

images that are in modal not being shown.

pedramvdl31 avatar Jan 31 '19 23:01 pedramvdl31

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();
});

Sebiworld avatar Jul 15 '19 17:07 Sebiworld