Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit 6919574

Browse files
fix: I forgot the contenteditable attribute in the doc :)
1 parent a7835b7 commit 6919574

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

β€Ždocs/docs/components/app-components-inline-editor/app-components-inline-editor.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ The "WYSIWYG inline editor" component is an extra component which will be use in
1717
## Showcase
1818

1919
<div>
20-
<h1 style={{color: '#3880ff'}}>DeckDeckGo (editable title)</h1>
20+
<h1 style={{color: '#3880ff'}} contenteditable>DeckDeckGo (editable title)</h1>
2121

22-
<h2 style={{color: '#3880ff'}}>The Progressive Web App alternative for simple presentations πŸš€ (editable subtitle)</h2>
22+
<h2 style={{color: '#3880ff'}} contenteditable>The Progressive Web App alternative for simple presentations πŸš€ (editable subtitle)</h2>
2323

24-
<p style={{color: '#3880ff'}}>Edit anywhere, display everywhere (editable paragraph)</p>
24+
<p style={{color: '#3880ff'}} contenteditable>Edit anywhere, display everywhere (editable paragraph)</p>
2525
</div>
2626

2727
<deckgo-inline-editor sticky-desktop="true" sticky-mobile="true"></deckgo-inline-editor>

β€Ždocs/src/app/pages/docs/components/app-components-inline-editor/app-components-inline-editor.tsxβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ export class AppComponentsInlineEditor {
4848
</ul>
4949
<h2 id="app-components-inline-editor-showcase">Showcase</h2>
5050
<div>
51-
<h1 style={{color: '#3880ff'}}>DeckDeckGo (editable title)</h1>
51+
<h1 style={{color: '#3880ff'}} contenteditable>DeckDeckGo (editable title)</h1>
5252

53-
<h2 style={{color: '#3880ff'}}>The Progressive Web App alternative for simple presentations πŸš€ (editable subtitle)</h2>
53+
<h2 style={{color: '#3880ff'}} contenteditable>The Progressive Web App alternative for simple presentations πŸš€ (editable subtitle)</h2>
5454

55-
<p style={{color: '#3880ff'}}>Edit anywhere, display everywhere (editable paragraph)</p>
55+
<p style={{color: '#3880ff'}} contenteditable>Edit anywhere, display everywhere (editable paragraph)</p>
5656
</div>
5757

5858
<p><deckgo-inline-editor sticky-desktop="true" sticky-mobile="true"></deckgo-inline-editor></p>

0 commit comments

Comments
Β (0)