1
0

Remove console.log

This commit is contained in:
Zef Hemel 2023-10-03 14:34:21 +02:00
parent 3535bc9449
commit 0b4f938c5d

View File

@ -59,7 +59,7 @@ class IFrameWidget extends WidgetType {
get estimatedHeight(): number { get estimatedHeight(): number {
const cachedHeight = this.editor.space.getCachedWidgetHeight(this.bodyText); const cachedHeight = this.editor.space.getCachedWidgetHeight(this.bodyText);
console.log("Calling estimated height", cachedHeight); // console.log("Calling estimated height", cachedHeight);
return cachedHeight > 0 ? cachedHeight : 150; return cachedHeight > 0 ? cachedHeight : 150;
} }