diff --git a/README.md b/README.md index 5d57d276..446a0796 100644 --- a/README.md +++ b/README.md @@ -12,19 +12,26 @@ Check out the [Froala editor homepage](https://froala.com/wysiwyg-editor) for mo meteor add froala:editor ``` 2.Create a froala-template in your main.html file. +``` - +``` 3.Include the template in body of html. +``` {{> froala}} - +``` 4.Run froala when template is rendered in main.js file. +``` Template.froala.rendered = function () { - $('.editor').froalaEditor() + $('.editor').froalaEditor({ + toolbarInline: true + }) }; +``` +Check out the [Froala editor documentation](https://froala.com/wysiwyg-editor/v2.0/docs/) for more details to add `options, events and methods`.