Skip to content

Commit

Permalink
Fixed issue: HTML5 video editor plugin was disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed May 22, 2018
1 parent 2bb156d commit 0bc9d02
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions assets/packages/ckeditor/config.js
@@ -1,4 +1,4 @@
/*
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
Expand Down Expand Up @@ -26,7 +26,7 @@ CKEDITOR.editorConfig = function (a) {
a.toolbar_popup = [
["Save", "Source", "Createlimereplacementfields"],
["Cut", "Copy", "Paste", "PasteText", "PasteFromWord"], "Undo Redo - Find Replace - SelectAll RemoveFormat".split(" "),
"Image VideoDetector Flash Table HorizontalRule Smiley SpecialChar".split(" "), "/", "Bold Italic Underline Strike - Subscript Superscript".split(" "),
"Image Html5video VideoDetector Flash Table HorizontalRule Smiley SpecialChar".split(" "), "/", "Bold Italic Underline Strike - Subscript Superscript".split(" "),
"NumberedList BulletedList - Outdent Indent Blockquote CreateDiv".split(" "), ["JustifyLeft", "JustifyCenter", "JustifyRight", "JustifyBlock"],
["BidiLtr", "BidiRtl"],
["Link", "Unlink", "Anchor", "Iframe"], "/", ["Styles", "Format", "Font", "FontSize"],
Expand All @@ -37,7 +37,7 @@ CKEDITOR.editorConfig = function (a) {
["Maximize", "Source", "Createlimereplacementfields"],
["Cut",
"Copy", "Paste", "PasteText", "PasteFromWord"
], "Undo Redo - Find Replace - SelectAll RemoveFormat".split(" "), ["Image", "VideoDetector", "Flash"],
], "Undo Redo - Find Replace - SelectAll RemoveFormat".split(" "), ["Image", "Html5video", "VideoDetector", "Flash"],
["Table", "HorizontalRule", "Smiley", "SpecialChar"],
["Bold", "Italic", "Underline", "Strike"],
["Subscript", "Superscript"],
Expand All @@ -64,7 +64,7 @@ CKEDITOR.editorConfig = function (a) {
["Source", "Createlimereplacementfields"],
["Cut",
"Copy", "Paste", "PasteText", "PasteFromWord"
], "Undo Redo - Find Replace - SelectAll RemoveFormat".split(" "), ["Image", "VideoDetector", "Flash"],
], "Undo Redo - Find Replace - SelectAll RemoveFormat".split(" "), ["Image", "Html5video","VideoDetector", "Flash"],
["Table", "HorizontalRule", "Smiley", "SpecialChar"],
["Bold", "Italic", "Underline", "Strike"],
["Subscript", "Superscript"],
Expand Down

0 comments on commit 0bc9d02

Please sign in to comment.