[html5] r4480 - [e] (0) typo

whatwg at whatwg.org whatwg at whatwg.org
Tue Jan 5 00:14:11 PST 2010


Author: ianh
Date: 2010-01-05 00:14:07 -0800 (Tue, 05 Jan 2010)
New Revision: 4480

Modified:
   complete.html
   index
   source
Log:
[e] (0) typo

Modified: complete.html
===================================================================
--- complete.html	2010-01-05 08:11:05 UTC (rev 4479)
+++ complete.html	2010-01-05 08:14:07 UTC (rev 4480)
@@ -17221,7 +17221,7 @@
   var progressBar = document.getElementById('p');
   function updateProgress(newValue) {
     progressBar.value = newValue;
-    progressBar.getElementsByTagName('span').textContent = newValue;
+    progressBar.getElementsByTagName('span')[0].textContent = newValue;
   }
  </script>
 </section></pre>

Modified: index
===================================================================
--- index	2010-01-05 08:11:05 UTC (rev 4479)
+++ index	2010-01-05 08:14:07 UTC (rev 4480)
@@ -17056,7 +17056,7 @@
   var progressBar = document.getElementById('p');
   function updateProgress(newValue) {
     progressBar.value = newValue;
-    progressBar.getElementsByTagName('span').textContent = newValue;
+    progressBar.getElementsByTagName('span')[0].textContent = newValue;
   }
  </script>
 </section></pre>

Modified: source
===================================================================
--- source	2010-01-05 08:11:05 UTC (rev 4479)
+++ source	2010-01-05 08:14:07 UTC (rev 4480)
@@ -18183,7 +18183,7 @@
   var progressBar = document.getElementById('p');
   function updateProgress(newValue) {
     progressBar.value = newValue;
-    progressBar.getElementsByTagName('span').textContent = newValue;
+    progressBar.getElementsByTagName('span')[0].textContent = newValue;
   }
  </script>
 </section></pre>




More information about the Commit-Watchers mailing list