From 0b4f938c5d8bfebafd8cf05cf11f18980ac9c359 Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Tue, 3 Oct 2023 14:34:21 +0200 Subject: [PATCH] Remove console.log --- web/cm_plugins/fenced_code.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/cm_plugins/fenced_code.ts b/web/cm_plugins/fenced_code.ts index 645bd5c..1dfb4b0 100644 --- a/web/cm_plugins/fenced_code.ts +++ b/web/cm_plugins/fenced_code.ts @@ -59,7 +59,7 @@ class IFrameWidget extends WidgetType { get estimatedHeight(): number { 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; }