-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* DOC-2354: Add TINY-10682 release note entry * Improve CCFR and add example of before/after fix. * Added an example to TINY-10789 * Apply suggestions from Shan's code review Co-authored-by: shanmen-tiny <[email protected]> * Add live demo examples for TINY-10789 * Add live demo example for TINY-10682 --------- Co-authored-by: shanmen-tiny <[email protected]>
- Loading branch information
1 parent
77dd6ae
commit 8019660
Showing
11 changed files
with
114 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<div id="div#tiny-10682-initial"> | ||
<div class="mce-toc"> | ||
<h2>Table of <em>Contents</em></h2> | ||
<ul> | ||
<li><a href="#my-heading">My Heading</a></li> | ||
</ul> | ||
</div> | ||
<h1 id="my-heading">My Heading</h1> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
tinymce.init({ | ||
selector: 'div#tiny-10682-after', | ||
plugins: 'tableofcontents', | ||
menubar: false, | ||
inline: true, | ||
toolbar: false, | ||
readonly: true | ||
}); |
9 changes: 9 additions & 0 deletions
9
modules/ROOT/examples/live-demos/tiny-10682-before/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<div id="div#tiny-10682-before"> | ||
<div class="mce-toc"> | ||
<h2>Table of <em>Contents</em></h2> | ||
<ul> | ||
<li><a href="#my-heading">My Heading</a></li> | ||
</ul> | ||
</div> | ||
<h1 id="my-heading">My Heading</h1> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
tinymce.init({ | ||
selector: 'div#tiny-10682-before', | ||
plugins: 'tableofcontents', | ||
menubar: false, | ||
inline: true, | ||
toolbar: false, | ||
readonly: true | ||
}); |
9 changes: 9 additions & 0 deletions
9
modules/ROOT/examples/live-demos/tiny-10682-initial/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<div id="div#tiny-10682-initial"> | ||
<div class="mce-toc"> | ||
<h2>Table of <em>Contents</em></h2> | ||
<ul> | ||
<li><a href="#my-heading">My Heading</a></li> | ||
</ul> | ||
</div> | ||
<h1 id="my-heading">My Heading</h1> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
tinymce.init({ | ||
selector: 'div#tiny-10682-initial', | ||
plugins: 'tableofcontents', | ||
menubar: false, | ||
inline: true, | ||
toolbar: false, | ||
readonly: true | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<div id="tiny-10789-after"> | ||
<div class="mce-toc"> | ||
<h2>Table of Contents</h2> | ||
<ul> | ||
<li><a href="#my-heading">My <em>Heading</em></a></li> | ||
</ul> | ||
</div> | ||
<h1 id="my-heading">My <em>Heading</em></h1> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
tinymce.init({ | ||
selector: 'div#tiny-10789-after', | ||
plugins: 'tableofcontents', | ||
menubar: false, | ||
inline: true, | ||
toolbar: false, | ||
readonly: true | ||
}); |
9 changes: 9 additions & 0 deletions
9
modules/ROOT/examples/live-demos/tiny-10789-before/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<div id="tiny-10789-before"> | ||
<div class="mce-toc"> | ||
<h2>Table of Contents</h2> | ||
<ul> | ||
<li><a href="#my-heading">My <em>Heading</em></a></li> | ||
</ul> | ||
</div> | ||
<h1 id="my-heading">My <em>Heading</em></h1> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
tinymce.init({ | ||
selector: 'div#tiny-10789-before', | ||
plugins: 'tableofcontents', | ||
menubar: false, | ||
inline: true, | ||
toolbar: false, | ||
readonly: true | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters