Skip to content
Snippets Groups Projects
Unverified Commit 2bc1e455 authored by Maxime Pauvert's avatar Maxime Pauvert Committed by GitHub
Browse files

Fix iframe-resizer readyCallback to onReady (#35541)

parent c6293fee
No related branches found
No related tags found
No related merge requests found
......@@ -412,7 +412,7 @@ export function clipPathReference(id) {
return `url(${url})`;
}
export function initializeIframeResizer(readyCallback = () => {}) {
export function initializeIframeResizer(onReady = () => {}) {
if (!isWithinIframe()) {
return;
}
......@@ -421,12 +421,12 @@ export function initializeIframeResizer(readyCallback = () => {}) {
// have their embeds autosize to their content
if (window.iFrameResizer) {
console.error("iFrameResizer resizer already defined.");
readyCallback();
onReady();
} else {
window.iFrameResizer = {
autoResize: true,
heightCalculationMethod: "max",
readyCallback: readyCallback,
onReady,
};
// FIXME: Crimes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment