0
document.onpaste = function(event){
var items = (event.clipboardData || event.originalEvent.clipboardData).items;
for (index in items) {
var item = items[index];
if (item.kind === 'file') {
// adds the file to your dropzone instance
myDropzone.addFile(item.getAsFile())
}
}
}
Places the above code inside the init function
Take a look at documentation or use a lib
– Costamilam
Outlook uses WYSIWYG editor
– Marcos Brinner
I will study @Marcosbrinner , you advise some in specific?
– Alexandre Nobre