You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constwidget=uploadcare.Widget("[role=uploadcare-uploader]");widget.onDialogOpen((dialog)=>{functionuploadFromClipboard(e){letdata=e.clipboardData;if(!!data&&!!data.items.length){// check if clipboard data is imageif(data.items[0].type.indexOf("image")!=0){alert("No image in the clipboard");return;}letblob=e.clipboardData.items[0].getAsFile();dialog.addFiles("object",[blob]);}}window.addEventListener("paste",uploadFromClipboard);});
Summary
I want to open the uploader and just paste an image from the clipboard.
Basic example
They all are the same, take twitter.com for example.
Motivation
Saves time and adds convenience.
The text was updated successfully, but these errors were encountered: