Moving Files

This commit is contained in:
Kyle
2018-10-13 10:12:38 -07:00
parent 55a0749a2d
commit 79d74e1a6a
197 changed files with 926 additions and 927 deletions

11
data/scripts/loadImage.js Normal file
View File

@@ -0,0 +1,11 @@
function loadImage(event, destination, arg) {
if (arg != false) {
var input = event.target
var reader = new FileReader()
reader.onload = function() {
var dataURL = reader.result
destination.src = dataURL
}
reader.readAsDataURL(input.files[0])
}
}