set symbols

This commit is contained in:
Kyle
2020-01-04 15:28:23 -08:00
parent c071cb59d7
commit a3e47c73c4
3 changed files with 165 additions and 0 deletions

View File

@@ -804,6 +804,9 @@ function uploadImage(event, destination) {
reader.onload = function() {
var dataURL = reader.result;
destination.src = dataURL;
if (destination == setSymbol) {
autocrop(setSymbol)
}
}
reader.readAsDataURL(input.files[0]);
}