Skip to content

Commit ca4324c

Browse files
Removing the min attribute as it is not valid.
http://www.w3.org/wiki/HTML/Elements/progress
1 parent 0e4aff9 commit ca4324c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

demos/dnd-upload.html

+2-2
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)