You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-29 22:48:10 +02:00
Mobile: Add a Rich Text Editor (#12748)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import Setting from '../../../../models/Setting';
|
||||
|
||||
const onRichTextDismissLinkClick = () => {
|
||||
Setting.setValue('richTextBannerDismissed', true);
|
||||
};
|
||||
|
||||
export default onRichTextDismissLinkClick;
|
||||
@@ -0,0 +1,7 @@
|
||||
import CommandService from '../../../../services/CommandService';
|
||||
|
||||
const onRichTextReadMoreLinkClick = () => {
|
||||
void CommandService.instance().execute('openItem', 'https://joplinapp.org/help/apps/rich_text_editor');
|
||||
};
|
||||
|
||||
export default onRichTextReadMoreLinkClick;
|
||||
Reference in New Issue
Block a user