Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
www
/
wp-content
/
plugins
/
ultimate-addons-for-gutenberg
/
blocks-config
/
uagb-controls
/
Editing: AddGBSStylesDom.js
const AddGBSStylesDom = ( globalBlockStyleId, styleText ) => { const putStyleInHead = ( current_document, rawStyle, tagId ) => { if ( ! rawStyle ) return; tagId = 'spectra-gbs-' + globalBlockStyleId; const isExistTag = current_document.getElementById( tagId ); if( ! isExistTag ){ const node = document.createElement( 'style' ) node.setAttribute( 'id', tagId ); node.textContent = rawStyle; current_document.head.appendChild( node ) }else{ isExistTag.textContent = rawStyle } } putStyleInHead( document, styleText, globalBlockStyleId ); setTimeout( () => { const getAllIFrames = document.getElementsByTagName( 'iframe' ); if ( ! getAllIFrames?.length ) { return; } for ( const iterateIFrames of getAllIFrames ) { // Skip the iframe with the specific name. if ( uagb_blocks_info.exclude_crops_iframes.includes( iterateIFrames.name ) ) { continue; } try { const iframeDocument = iterateIFrames?.contentWindow.document || iterateIFrames?.contentDocument; if( ! iframeDocument?.head ){ continue; } putStyleInHead( iframeDocument, styleText, globalBlockStyleId ); } catch ( e ) { // Ignore cross-origin access errors. } } // Loop end. } ); }; export default AddGBSStylesDom;
Save
Cancel