html-editor-enhanced
                                
                                
                                
                                    html-editor-enhanced copied to clipboard
                            
                            
                            
                        [QUESTION] Is there a way to remove/hide height adjuster?
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?
I am experiencing the same issue. Could you let me know if you have a solution yet?
For me, remove the following configuration in summernote-lite.min.js.
 '<div class="note-statusbar" role="status">', 
                                    
                                    
                                    
                                
@cd89101112 Thank you for your help, it worked!
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?
For me it was to "setFullScreen" by the controller
HtmlEditor(
      controller: controller,
      callbacks: Callbacks(
              onInit: () {
                controller.setFullScreen();
              }),
       ....