Skip to content

Commit

Permalink
Добавил плагины textwatcher, textmatch, autocomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
epsilonn committed Jul 3, 2019
1 parent 2e332d1 commit 92ace01
Show file tree
Hide file tree
Showing 12 changed files with 7,606 additions and 590 deletions.
3,959 changes: 3,723 additions & 236 deletions dist/ckeditor-full.js

Large diffs are not rendered by default.

37 changes: 19 additions & 18 deletions dist/ckeditor-full.min.js

Large diffs are not rendered by default.

3,959 changes: 3,723 additions & 236 deletions dist/ckeditor/ckeditor.js

Large diffs are not rendered by default.

38 changes: 38 additions & 0 deletions dist/ckeditor/plugins/autocomplete/skins/default.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/*
Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/

.cke_autocomplete_panel
{
position: absolute;
display: none;
box-sizing: border-box;
width: 200px;
max-height: 300px;
overflow: auto;
padding: 0;
margin: 0;
list-style: none;
background: #FFF;
border: 1px solid #b6b6b6;
border-bottom-color: #999;
border-radius: 3px;
font: 12px Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
}
.cke_autocomplete_opened
{
display: block;
}
.cke_autocomplete_panel > li
{
padding: 5px;
}
.cke_autocomplete_panel > li:hover
{
cursor: pointer;
}
.cke_autocomplete_selected, .cke_autocomplete_panel > li:hover
{
background-color: #EFF0EF;
}
Binary file modified dist/ckeditor/plugins/icons.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dist/ckeditor/plugins/icons_hidpi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
176 changes: 88 additions & 88 deletions dist/ckeditor/skins/clean/editor.css

Large diffs are not rendered by default.

Binary file modified dist/ckeditor/skins/clean/icons.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dist/ckeditor/skins/clean/icons_hidpi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src/build-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ var CKBUILDER_CONFIG = {
plugins: {
a11yhelp: 0,
about: 0,
autocomplete: 1, // автокомплит в композе
autogrow: 1, // авторазмер по содержимому
autolink2: 1, // автосоздание ссылок по Enter
basicstyles: 1, // базовые операции редакторования текста: жирн, курсив и проч
Expand Down Expand Up @@ -115,6 +116,8 @@ var CKBUILDER_CONFIG = {
tableresize: 0,
tabletools: 0, // зависит от contextmenu
templates: 0, // диалог выбора шаблонов
textmatch: 1, // содержит полезные функции для зравнения текста по ренджу
textwatcher: 1, // наблюдает за печатаемым текстом, генерит события при остановке печати
toolbar: 1,
translate: 1, // интерфейс переводчика
undo: 1,
Expand Down

0 comments on commit 92ace01

Please sign in to comment.