Fix CYS crash when loads in WordPress Playground (#48129)

* Fix CYS crash when loads in WordPress Plaground

* Add changefile(s) from automation for the following project(s): woocommerce

---------

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Luigi Teschio 2024-06-13 15:38:27 +02:00 committed by GitHub
parent 924fc1687b
commit 7f1616242c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 1 deletions

View File

@ -8,7 +8,12 @@ export function sendMessageToParent( message ) {
}
export function isIframe( windowObject ) {
return windowObject.document !== windowObject.parent.document;
return (
windowObject.document !== windowObject.parent.document &&
windowObject.parent.document.body.querySelector(
'.woocommerce-customize-store__container'
) !== null
);
}
export function editorIsLoaded() {

View File

@ -0,0 +1,4 @@
Significance: patch
Type: tweak
Comment: Fix CYS crash when loads in WordPress Playground