diff options
author | yipstanley <stanley_yip@brown.edu> | 2019-03-17 19:33:10 -0400 |
---|---|---|
committer | yipstanley <stanley_yip@brown.edu> | 2019-03-17 19:33:10 -0400 |
commit | 16eb812f464af0a4604b9cae60526c4282382b40 (patch) | |
tree | 336ffcc9d44bf521b352876d2207bfa5daa4aa5a | |
parent | 65d67baa79c7d1c22db23b4ea722403d5067176b (diff) |
uh
-rw-r--r-- | src/mobile/ImageUpload.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mobile/ImageUpload.tsx b/src/mobile/ImageUpload.tsx index ad589d51f..4f60c8c7d 100644 --- a/src/mobile/ImageUpload.tsx +++ b/src/mobile/ImageUpload.tsx @@ -36,7 +36,7 @@ const onFileLoad = (file: any) => { ReactDOM.render(( <div className="imgupload_cont"> <button className="button_file" onTouchStart={onPointerDown}> Open Image </button> - <input type="file" accept="image/*" capture="filesystem" onChange={onFileLoad} className="input_file" id="input_image_file"></input> + <input type="file" accept="image/*" onChange={onFileLoad} className="input_file" id="input_image_file"></input> <img id="img_preview" src=""></img> </div>), document.getElementById('root') |