1
0

Remove debug statements

This commit is contained in:
Zef Hemel 2023-11-25 14:31:39 +01:00
parent 8d326a668b
commit bf5d17aa7a

View File

@ -26,11 +26,9 @@ class IFrameWidget extends WidgetType {
}
get estimatedHeight(): number {
const height = this.editor.space.getCachedWidgetHeight(
return this.editor.space.getCachedWidgetHeight(
this.widgetHeightCacheKey,
);
console.log("GOt height", height);
return height;
}
eq(other: WidgetType): boolean {