We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently image uploading by URL in editor works only from current domain. Will be good to allow uploading from any web source
uploadByUrl: (url: string) => { if (url.startsWith(window.location.origin)) { return new Promise<any>(done => done({ success: 1, file: { url, } })); } else { toast.error('Please upload image via File manage') return new Promise<any>(done => done({ success: 0, })); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently image uploading by URL in editor works only from current domain. Will be good to allow uploading from any web source
The text was updated successfully, but these errors were encountered: