aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-03-18 00:33:29 -0400
committerTyler Schicke <tyler_schicke@brown.edu>2019-03-18 00:33:29 -0400
commit63ceada966447c67703a8f649d23c735dff23f3b (patch)
tree662b3154609575de3f2481d3071635ea685cc416 /src
parenta87f23374cbeb491e528127475bba6f55031dd81 (diff)
small change
Diffstat (limited to 'src')
-rw-r--r--src/mobile/ImageUpload.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mobile/ImageUpload.tsx b/src/mobile/ImageUpload.tsx
index 935f5b5c1..ac46cb4fc 100644
--- a/src/mobile/ImageUpload.tsx
+++ b/src/mobile/ImageUpload.tsx
@@ -65,7 +65,7 @@ const onFileLoad = (file: any) => {
ReactDOM.render((
<div className="imgupload_cont">
{/* <button className = "button_file" = {onPointerDown}> Open Image </button> */}
- <input type="file" accept="image/*" capture="camera" 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')