Fix console error when there is an error on the append file

This commit is contained in:
Chocobozzz 2016-01-09 12:37:40 +01:00
parent 74b3bd0135
commit 4884d60337

View file

@ -211,7 +211,7 @@
file.appendTo($embed.get(0), function (err) {
if (err) {
alert('Cannot append the file.')
console.err(err)
console.error(err)
}
})
})