From ded014dc838726df6188f56839489ef0c6f2e9cf Mon Sep 17 00:00:00 2001 From: ssibrahimpur Date: Thu, 16 Apr 2020 16:32:56 +0530 Subject: [PATCH 1/3] Updated readme --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 1652cd1..eb763ce 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,14 @@ export default { ``` +If you need to include the additional plugins, then include the respective `js` and `css` files in the file `main.js`. +```javascript +require('froala-editor/js/third_party/font_awesome.min.js'); +require('froala-editor/css/third_party/font_awesome.min.css'); +require('froala-editor/js/third_party/spell_checker.min.js'); +require('froala-editor/css/third_party/spell_checker.min.css'); +``` #### 2. Make sure you have the right Webpack settings for loading the CSS files, Font Awesome and jQuery. From 90099843952a425e0d811b85a753000180e14740 Mon Sep 17 00:00:00 2001 From: ssibrahimpur Date: Thu, 16 Apr 2020 17:27:20 +0530 Subject: [PATCH 2/3] Removed unwanted contents --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index eb763ce..d96cd64 100644 --- a/README.md +++ b/README.md @@ -55,8 +55,6 @@ Vue.use(VueFroala) ``` -If you need to include the additional plugins, then include the respective `js` and `css` files in the file `main.js`. +If you need to include additional plugins, then include the respective `js` and `css` files in the file `main.js`. ```javascript require('froala-editor/js/third_party/font_awesome.min.js'); From 65ba1ad18fb282ec124cd7eb11d9ac901552e06c Mon Sep 17 00:00:00 2001 From: ssibrahimpur <47515317+ssibrahimpur@users.noreply.github.com> Date: Thu, 16 Apr 2020 18:19:36 +0530 Subject: [PATCH 3/3] Update verbiage --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index d96cd64..ffa3d20 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,15 @@ Vue.use(VueFroala) ... ``` +Optional - To include plugins here: + +```javascript +require('froala-editor/js/third_party/font_awesome.min.js'); +require('froala-editor/css/third_party/font_awesome.min.css'); +require('froala-editor/js/third_party/spell_checker.min.js'); +require('froala-editor/css/third_party/spell_checker.min.css'); +``` + #### App.vue file: ```javascript