Enable mobile editing

This commit is contained in:
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;