Enable mobile editing

master
Lea 2023-01-12 14:28:17 +01:00
parent ddec589b37
commit 4eebaab5e6
Signed by: Lea
GPG Key ID: 1BAFFE8347019C42
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ const EditorUIController = () => {
};
EditorUIController.isSupportEditFeature = () => {
return false
return true
};
EditorUIController.getToolbarOptions = () => {

View File

@ -1,6 +1,6 @@
const EditorUIController = () => null;
EditorUIController.isSupportEditFeature = () => false;
EditorUIController.isSupportEditFeature = () => true;
export default EditorUIController;

View File

@ -1,6 +1,6 @@
const EditorUIController = () => null;
EditorUIController.isSupportEditFeature = () => false;
EditorUIController.isSupportEditFeature = () => true;
export default EditorUIController;