Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

froala not showing some toolbar buttons

Froala doesn't want show some buttons (like: video, image, table ...) and I don't now why. Maybe I just forget add some script? This My options:

    public tb = [
        "bold", "italic" , "insertTable","insertImage"]; 
 public options: Object = { 
  placeholderText: 'Edit Your Content Here!',
  toolbarInline: false,
  toolbarButtons: this.tb,
        toolbarButtonsMD: this.tb,
        toolbarButtonsSM: this.tb,
        toolbarButtonsXS: this.tb
}

This My scripts:

<script src="http://code.jquery.com/jquery-1.9.0.js"></script>
  <script src="http://code.jquery.com/jquery-migrate-1.2.1.js"></script>
  <script src="bower_components/froala-wysiwyg-editor/js/froala_editor.min.js"></script>
<script src="bower_components/froala-wysiwyg-editor/js/plugins/image.min.js"></script>
  <script src="bower_components/froala-wysiwyg-editor/js/plugins/image_manager.min.js"></script>
<script src="bower_components/froala-wysiwyg-editor/js/plugins/video.min.js"></script>

And My client just show Bold and Italic, how can I fix it?

enter image description here

like image 332
Kirill Achramionok Avatar asked Jan 19 '17 16:01

Kirill Achramionok


People also ask

Is Froala Editor good?

Froala WYSIWYG HTML Editor is the best rich text editor out there. It is built using the latest technologies and taking the great advantages of jQuery and HTML5 to create an outstanding editing experience.

How do I remove powered by Froala editor?

In version 3, we added in UI a Powered By Froala text and it can be removed when using a correct activation key by turning off the following option: https://www.froala.com/wysiwyg-editor/docs/options#attribution. Have more questions? Submit a request.

Is Froala editor open source?

Can I use Froala Editor in an Open Source project? No, none of our licenses allow you to use the Froala WYSIWYG HTML Editor in an Open Source project.


1 Answers

Make sure you also have the css counterparts. Like plugins/image.min.css

Here's the list

like image 156
Ruslan Avatar answered Sep 20 '22 04:09

Ruslan