html-editor-enhanced icon indicating copy to clipboard operation
html-editor-enhanced copied to clipboard

[QUESTION] Is there a way to remove/hide height adjuster?

Open Aniket76 opened this issue 1 year ago • 4 comments

Hello there,

I'm using this editor in one of my projects but didn't want the height adjuster at the end of the editor. Is there a way to hide/remove it?

Screenshot 2024-05-29 at 7 34 39 PM

Aniket76 avatar May 29 '24 14:05 Aniket76

I am experiencing the same issue. Could you let me know if you have a solution yet?

alexcao194 avatar Jul 25 '24 04:07 alexcao194

For me, remove the following configuration in summernote-lite.min.js.

 '<div class="note-statusbar" role="status">', 

cd89101112 avatar Jul 31 '24 08:07 cd89101112

@cd89101112 Thank you for your help, it worked!

alexcao194 avatar Aug 01 '24 03:08 alexcao194

Altough it works, removing the class from the minified version has a bunch of problems, not to say that everytime we update the library or clean the project we would need to redo this. Couldn't we have an attribute for this?

JeanPSF avatar Oct 15 '24 20:10 JeanPSF

For me it was to "setFullScreen" by the controller

HtmlEditor(
      controller: controller,
      callbacks: Callbacks(
              onInit: () {
                controller.setFullScreen();
              }),
       ....

giomaroon avatar Jun 18 '25 16:06 giomaroon