unlayer/vue-email-editor

User Uploads: Disable Upload Image Button

Opened this issue · 1 comments

I've implemented the user uploads feature. Now I want to disable Upload Image button.

I'm unable to find a way to disable the upload button and drag/drop feature from the user uploads? Anyone please guide?

image

i meet the same problem that set 'selectImage' event for custom image library, but it doesn't work currently.

emailEditor.value.editor.registerCallback(
    "selectImage",
    function (params, done) {
      updateImageFunction.value = done;
      isShowUpLoadImageModal.value = true;  
    }
  );

image