Skip to content

Commit 8eb9d57

Browse files
committed
meter => progress, as it is a task process, not a gauge-ey type progress
1 parent ad6df8b commit 8eb9d57

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

demos/dnd-upload.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#holder.hover { border: 10px dashed #0c0; }
55
#holder img { display: block; margin: 10px auto; }
66
#holder p { margin: 10px; font-size: 14px; }
7-
meter { width: 100%; }
8-
meter:after { content: '%'; }
7+
progress { width: 100%; }
8+
progress:after { content: '%'; }
99
.fail { background: #c00; padding: 2px; color: #fff; }
1010
.hidden { display: none !important;}
1111
</style>
@@ -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: <meter id="uploadprogress" min="0" max="100" value="0">0</meter></p>
19+
<p>Upload progress: <progress id="uploadprogress" min="0" 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>

0 commit comments

Comments
 (0)