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

Docs: Multiple root editor sample and tutorial added #1586

Merged
merged 27 commits into from
Mar 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 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
c1b04af
Docs: Multiple root editor sample and tutorial added.
f1ames Feb 28, 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
3928f63
Merge pull request #1558 from ckeditor/t/1553
Reinmar Mar 5, 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
d775b3f
Merge branch 'master' into t/1447
Reinmar Mar 5, 2019
f6ced7c
Docs: Replaced GIFs with static PNGs in widget guides.
oleq Mar 5, 2019
43712a9
Wording.
Reinmar Mar 5, 2019
dc52d4d
Renaming and more wording.
Reinmar Mar 5, 2019
8f13e82
OCD.
Reinmar Mar 6, 2019
5dbe1c7
Merge branch 'tut/inline-widget' into stable
Reinmar Mar 6, 2019
2c86270
Merge branch 'stable' into t/1447
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
37 changes: 37 additions & 0 deletions docs/_snippets/examples/multi-root-editor.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<div id="snippet-inline-editor">
<div id="toolbar"></div>

<header id="header">
<h2>Gone traveling</h2>
<h3>Monthly travel news and inspiration</h3>
</header>

<div id="content">
<h3>Destination of the Month</h3>

<h4>Valletta</h4>

<figure class="image image-style-align-right">
<img alt="Picture of a sunlit facade of a Maltan building." src="%BASE_PATH%/assets/img/malta.jpg">
<figcaption>It's siesta time in Valletta.</figcaption>
</figure>

<p>The capital city of <a href="https://en.wikipedia.org/wiki/Malta" target="_blank" rel="external">Malta</a> is the top destination this summer. It’s home to a cutting-edge contemporary architecture, baroque masterpieces, delicious local cuisine and at least 8 months of sun. It’s also a top destination for filmmakers, so you can take a tour through locations familiar to you from Game of Thrones, Gladiator, Troy and many more.</p>
</div>

<div class="demo-row">
<div class="demo-row__half">
<div id="footer-left">
<h3>The three greatest things you learn from traveling</h3>
<p><a href="#">Find out more</a></p>
</div>
</div>

<div class="demo-row__half">
<div id="footer-right">
<h3>Walking the capitals of Europe: Warsaw</h3>
<p><a href="#">Find out more</a></p>
</div>
</div>
</div>
</div>
Loading