frontend.js 327 B

123456789101112
  1. (function( undefined ) {
  2. window.addEventListener( 'load', function() {
  3. requestAnimationFrame( function() {
  4. let maps = document.querySelectorAll( '.fl-map iframe[data-src]' );
  5. for ( let i = 0; i < maps.length; i++ ) {
  6. maps[ i ].src = maps[ i ].dataset.src;
  7. delete maps[ i ].dataset.src;
  8. }
  9. } );
  10. } );
  11. })();