From 7238a01f8978b2061766f3f77ea706a38a149f7c Mon Sep 17 00:00:00 2001 From: Abijeet Date: Sat, 14 Apr 2018 18:41:35 +0530 Subject: [PATCH] Moved the code to the wysiwyg-editor file. Signed-off-by: Abijeet --- resources/assets/js/components/wysiwyg-editor.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/resources/assets/js/components/wysiwyg-editor.js b/resources/assets/js/components/wysiwyg-editor.js index 539233204..56aa294fa 100644 --- a/resources/assets/js/components/wysiwyg-editor.js +++ b/resources/assets/js/components/wysiwyg-editor.js @@ -346,7 +346,7 @@ class WysiwygEditor { constructor(elem) { this.elem = elem; - this.plugins = "image table textcolor paste link autolink fullscreen imagetools code customhr autosave lists codeeditor"; + this.plugins = "image table textcolor paste link autolink fullscreen imagetools code customhr autosave lists codeeditor media"; this.loadPlugins(); this.tinyMceConfig = this.getTinyMceConfig(); @@ -382,7 +382,7 @@ class WysiwygEditor { valid_children: "-div[p|h1|h2|h3|h4|h5|h6|blockquote],+div[pre],+div[img]", plugins: this.plugins, imagetools_toolbar: 'imageoptions', - toolbar: "undo redo | styleselect | bold italic underline strikethrough superscript subscript | forecolor backcolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | table image-insert link hr drawio | removeformat code fullscreen", + toolbar: "undo redo | styleselect | bold italic underline strikethrough superscript subscript | forecolor backcolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | table image-insert link hr drawio media | removeformat code fullscreen", content_style: "body {padding-left: 15px !important; padding-right: 15px !important; margin:0!important; margin-left:auto!important;margin-right:auto!important;}", style_formats: [ {title: "Header Large", format: "h2"}, @@ -401,6 +401,8 @@ class WysiwygEditor { ]}, ], style_formats_merge: false, + media_alt_source: false, + media_poster: false, formats: { codeeditor: {selector: 'p,h1,h2,h3,h4,h5,h6,td,th,div'}, alignleft: {selector: 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img', classes: 'align-left'}, @@ -532,4 +534,4 @@ class WysiwygEditor { } -module.exports = WysiwygEditor; \ No newline at end of file +module.exports = WysiwygEditor;