File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -12,19 +12,26 @@ Check out the [Froala editor homepage](https://froala.com/wysiwyg-editor) for mo
1212meteor add froala:editor
1313```
14142.Create a froala-template in your main.html file.
15+ ```
1516<template name="froala">
1617 <div class="editor">Hello Froala</div>
1718</template>
18-
19+ ```
19203.Include the template in body of html.
21+ ```
2022<body>
2123 {{> froala}}
2224</body>
23-
25+ ```
24264.Run froala when template is rendered in main.js file.
27+ ```
2528Template.froala.rendered = function () {
26- $('.editor').froalaEditor()
29+ $('.editor').froalaEditor({
30+ toolbarInline: true
31+ })
2732};
33+ ```
34+ Check out the [ Froala editor documentation] ( https://froala.com/wysiwyg-editor/v2.0/docs/ ) for more details to add ` options, events and methods ` .
2835
2936
3037
You can’t perform that action at this time.
0 commit comments