Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h2>A simple table to play with</h2>
<h2>Got questions or need help?</h2>

<ul>
<li>Our <a class="mceNonEditable" href="https://www.tiny.cloud/docs/tinymce/8/">documentation</a> is a great resource for learning how to configure TinyMCE.</li>
<li>Our <a class="mceNonEditable" href="https://www.tiny.cloud/docs/tinymce/latest/">documentation</a> is a great resource for learning how to configure TinyMCE.</li>
<li>Have a specific question? Try the <a href="https://stackoverflow.com/questions/tagged/tinymce" target="_blank" rel="noopener"><code>tinymce</code> tag at Stack Overflow</a>.</li>
<li>We also offer enterprise grade support as part of <a href="https://www.tiny.cloud/pricing">TinyMCE premium subscriptions</a>.</li>
</ul>
Expand Down
4 changes: 2 additions & 2 deletions modules/ROOT/examples/live-demos/revisionhistory/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const revisions = [
createdAt: '2023-11-24T22:26:21.578Z',
author: {
id: 'james-wilson',
name: 'A Tiny Husky',
name: 'James Wilson',
avatar: 'https://sneak-preview.tiny.cloud/demouserdirectory/images/employee_james-wilson_128_52f19412.jpg',
},
content: `
Expand Down Expand Up @@ -140,7 +140,7 @@ const revisions = [
const revisionhistory_fetch = () => new Promise((resolve) => {
setTimeout(() => {
const sortedRevisions = revisions
.sort((a, b) => new Date(a.createdAt) < new Date(b.createdAt) ? 1 : -1);
.sort((a, b) => new Date(a.createdAt) < new Date(b.createdAt) ? -1 : 1);
resolve(sortedRevisions);
}, fakeDelay);
});
Expand Down