Merge pull request #3273 from samme/feature/load-data-uri-warning

Elevate console message for loading data URIs
This commit is contained in:
Richard Davey 2018-02-22 23:53:03 +00:00 committed by GitHub
commit 6581f301c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -272,7 +272,7 @@ var File = new Class({
if (this.src.indexOf('data:') === 0)
{
console.log('Local data URI');
console.warn('Local data URIs are not supported: ' + this.key);
}
else
{