Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Добавил плагины textwatcher, textmatch, autocomplete #17

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3,627 changes: 3,406 additions & 221 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,627 changes: 3,406 additions & 221 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.

2 changes: 2 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,7 @@ var CKBUILDER_CONFIG = {
tableresize: 0,
tabletools: 0, // зависит от contextmenu
templates: 0, // диалог выбора шаблонов
textwatcher: 1, // наблюдает за печатаемым текстом, генерит события при остановке печати
toolbar: 1,
translate: 1, // интерфейс переводчика
undo: 1,
Expand Down