From b8e6be46bfd49570c6132f7abdc66900b3e6db35 Mon Sep 17 00:00:00 2001 From: llcc Date: Thu, 5 May 2022 10:15:25 +0800 Subject: [PATCH] remove listen to textarea height change --- src/main/frontend/components/editor.cljs | 3 +-- src/main/frontend/handler/editor.cljs | 6 ------ 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/src/main/frontend/components/editor.cljs b/src/main/frontend/components/editor.cljs index 32ee67919..dc21b8845 100644 --- a/src/main/frontend/components/editor.cljs +++ b/src/main/frontend/components/editor.cljs @@ -524,7 +524,7 @@ (mixins/event-mixin setup-key-listener!) (shortcut/mixin :shortcut.handler/block-editing-only) lifecycle/lifecycle - [state {:keys [format block]} id config] + [state {:keys [format block]} id _config] (let [content (state/sub-edit-content) heading-class (get-editor-style-class content format)] [:div.editor-inner {:class (if block "block-editor" "non-block-editor")} @@ -541,7 +541,6 @@ :on-click (editor-handler/editor-on-click! id) :on-change (editor-handler/editor-on-change! block id search-timeout) :on-paste (editor-handler/editor-on-paste! id) - :on-height-change (editor-handler/editor-on-height-change! id) :auto-focus false :class heading-class}) diff --git a/src/main/frontend/handler/editor.cljs b/src/main/frontend/handler/editor.cljs index 118c4f2c7..84d221e86 100644 --- a/src/main/frontend/handler/editor.cljs +++ b/src/main/frontend/handler/editor.cljs @@ -2793,12 +2793,6 @@ (util/scroll-editor-cursor input) (close-autocomplete-if-outside input)))) -(defn editor-on-height-change! - [id] - (fn [_box-height ^js _row-height] - (let [input (gdom/getElement id)] - (util/scroll-editor-cursor input)))) - (defn editor-on-change! [block id search-timeout] (fn [e]