You can change the entire look and feel, can able to add button / event / can do anything with it. Read documentation here or more example here
HTML:
<div id="editor" placeholder="Type here ... "></div>
CSS:
<link rel="stylesheet" href="path_to/easyeditor.css">
JS:
jQuery(document).ready(function($) {
var editorInstance = null;
$('.fly-show-hide-editor').click(function() {
var editor = $(this).data('editor');
var behavior = $(this).data('behavior');
if(behavior === 'show') {
editorInstance = new EasyEditor(editor);
}
else if(behavior === 'hide') {
if(editorInstance instanceof EasyEditor === true) {
editorInstance.detachEvents();
editorInstance = null;
}
}
});
});
Feature requested by Phil Wamala