1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Mobile: Add support for drawing pictures (#7588)

This commit is contained in:
Henry Heino
2023-10-02 07:15:51 -07:00
committed by GitHub
parent 487112fd4d
commit 849427d1bf
35 changed files with 1419 additions and 46 deletions

View File

@@ -172,6 +172,15 @@ export interface RuleOptions {
// linkRenderingType = 2 gives a plain link with no JS. Caller needs to handle clicking on the link.
linkRenderingType?: number;
// A list of MIME types for which an edit button appears on tap/hover.
// Used by the image editor in the mobile app.
editPopupFiletypes?: string[];
// Shoould be the string representation a function that accepts two arguments:
// the target element to have the popup shown for and the id of the resource to edit.
createEditPopupSyntax?: string;
destroyEditPopupSyntax?: string;
audioPlayerEnabled: boolean;
videoPlayerEnabled: boolean;
pdfViewerEnabled: boolean;