Skip to content

Commit 16bea8b

Browse files
committed
Merge pull request remy#47 from jamierytlewski/patch-1
Removing the min attribute as it is not valid.
2 parents bd6bf04 + ca4324c commit 16bea8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

demos/dnd-upload.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<p id="filereader">File API &amp; FileReader API not supported</p>
1717
<p id="formdata">XHR2's FormData is not supported</p>
1818
<p id="progress">XHR2's upload progress isn't supported</p>
19-
<p>Upload progress: <progress id="uploadprogress" min="0" max="100" value="0">0</progress></p>
19+
<p>Upload progress: <progress id="uploadprogress" max="100" value="0">0</progress></p>
2020
<p>Drag an image from your desktop on to the drop zone above to see the browser both render the preview, but also upload automatically to this server.</p>
2121
</article>
2222
<script>
@@ -113,4 +113,4 @@
113113
};
114114
}
115115

116-
</script>
116+
</script>

0 commit comments

Comments
 (0)