- From: Terje Bless <link@hutz.w3.org>
- Date: Tue, 18 May 2004 00:33:58 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/htdocs In directory hutz:/tmp/cvs-serv652 Modified Files: Tag: validator-0_6_0-branch loadexplanation.js Log Message: Change upto(10) to upto(1); there's a logic error in there that makes some explanations go missing when it's 10 and I'm not sufficiently familiar with JavaScript to really track it down. Index: loadexplanation.js =================================================================== RCS file: /sources/public/validator/htdocs/loadexplanation.js,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- loadexplanation.js 23 Apr 2004 01:45:01 -0000 1.1.2.1 +++ loadexplanation.js 18 May 2004 00:33:56 -0000 1.1.2.2 @@ -6,7 +6,7 @@ } function doubleUp() { glist=d.getElementsByTagName("DIV") - upto(10) + upto(1) } function upto(n) { if (n<glist.length) {
Received on Monday, 17 May 2004 20:35:50 UTC