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

Creating widgets tutorials #1587

Merged
merged 23 commits into from
Mar 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
0782c50
WIP
Reinmar Jan 15, 2019
d63d63a
WIP
Reinmar Jan 15, 2019
fbae2eb
WIP
Reinmar Jan 16, 2019
42cf2db
Inline widget tutorial - working sample and outline.
jodator Feb 12, 2019
e06f46b
Merge branch 'tutorial' into tut/inline-widget
jodator Feb 18, 2019
5d7f7b6
Expand the description of bootstrap, schema and converter sections.
jodator Feb 19, 2019
835fe11
Merge branch 'master' into tut/inline-widget
jodator Feb 22, 2019
290a6f4
Describe ui part & rewrite converters for the latest API.
jodator Feb 22, 2019
b38d5e0
Fix whitespaces in plugin structure snippet.
jodator Feb 22, 2019
b59bc58
Fix links & code snippet.
jodator Feb 27, 2019
b89bf86
Update collaboration dependencies versions.
Feb 28, 2019
5b66ef7
Internal: Bumped up umberto and started using the feedback widget.
Reinmar Feb 28, 2019
d4478fb
Docs: Updated the migration guide.
Reinmar Mar 1, 2019
17f4810
Merge branch 'stable' into tut/inline-widget
Reinmar Mar 4, 2019
83c7f00
Updated the block widget tutorial.
Reinmar Mar 4, 2019
723ed93
Renaming.
Reinmar Mar 4, 2019
95b272a
Moar fixes.
Reinmar Mar 4, 2019
1b530aa
Basic proofread.
Reinmar Mar 4, 2019
985bcf2
Docs: Added 'Creating a button' section to the block widget framework…
oleq Mar 5, 2019
d90dc0f
Docs: Added a screencast to the inline widget guide. Random proofread…
oleq Mar 5, 2019
38a113b
Docs: Compressed all PNGs in the widget guides.
oleq Mar 5, 2019
f6ced7c
Docs: Replaced GIFs with static PNGs in widget guides.
oleq Mar 5, 2019
8f13e82
OCD.
Reinmar Mar 6, 2019
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 5 additions & 2 deletions docs/builds/guides/migrate.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,11 @@ Note: The number of options was reduced on purpose. We understood that configuri
<tr>
<td><a href="/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-disableNativeSpellChecker">disableNativeSpellChecker</a></td>
<td>
<p>Unavailable, however, in case of Inline and Balloon editors can be done by setting the <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/spellcheck" target="_blank" rel="noopener"><code>spellcheck</code></a> attribute directly on the element where CKEditor should be enabled.</p>
<p>For Classic editor, call <code>editor.ui.getEditableElement().setAttribute(&apos;spellcheck&apos;, &apos;false&apos;);</code> after creating the editor.</p>
<p>Unavailable, however, in case of inline and balloon editors can be done by setting the <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/spellcheck" target="_blank" rel="noopener"><code>spellcheck</code></a> attribute directly on the element where CKEditor should be enabled.</p>
<p>For the classic and decoupled editors, call:</p>
<pre><code>editor.editing.view.change( writer => {
writer.setAttribute( 'spellcheck', 'false', editor.editing.view.document.getRoot() );
} );</code></pre>
</td>
</tr>
<tr>
Expand Down
1 change: 1 addition & 0 deletions docs/builds/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
category: builds
order: 10
toc: false
feedback-widget: false
meta-title: CKEditor 5 Builds documentation
meta-description: Learn how to install, integrate, configure and develop CKEditor 5 Builds. Browse through API documentation and online samples.
---
Expand Down
1 change: 1 addition & 0 deletions docs/examples/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
category: examples
order: 10
toc: false
feedback-widget: false
meta-title: CKEditor 5 documentation - online examples
meta-description: Navigate through CKEditor 5 examples to see what you are able to create using this rich text editing framework.
---
Expand Down
1 change: 1 addition & 0 deletions docs/features/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
category: features
order: 10
toc: false
feedback-widget: false
---

# Features
Expand Down
1 change: 1 addition & 0 deletions docs/framework/guides/architecture/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
category: framework-architecture
order: 10
toc: false
feedback-widget: false
---

# Introduction
Expand Down
3 changes: 2 additions & 1 deletion docs/framework/guides/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ module.exports = {
// Or /ckeditor5-[^/]+\/theme\/[^/]+\.css$/ if you want to limit this loader
// to CKEditor 5 theme only.
test: /\.css$/,

use: [
{
loader: 'style-loader',
Expand All @@ -81,7 +82,7 @@ module.exports = {
},
minify: true
} )
},
}
]
}
]
Expand Down
Loading