Fix iframe closed too early in Safari #2571

This commit is contained in:
Kijin Sung 2025-06-19 22:59:20 +09:00
parent 614ed353d1
commit d3606c07db

View file

@ -11,7 +11,9 @@
const iframe_sequence = '{{ $iframe_sequence }}';
window.opener = window.parent;
window.close = function() {
parent.closeModal('_rx_iframe_' + iframe_sequence);
setTimeout(function() {
parent.closeModal('_rx_iframe_' + iframe_sequence);
}, 100);
};
</script>
<style>