Skip to content

Commit

Permalink
Fix for bug 677 -- no longer assume that code sprint will always be s…
Browse files Browse the repository at this point in the history
…cheduled.

 - Legacy-Id: 3182
  • Loading branch information
adamroach committed Jun 27, 2011
1 parent ec15165 commit 3c6cce6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ietf/templates/meeting/week-view.html
Expand Up @@ -128,6 +128,7 @@
var body = document.body;
while (body.childNodes.length) { body.removeChild(body.childNodes[0]); }

var j = start_day;
for (i = 0; i < num_days; i++)
{
//-----------------------------------------------------------------
Expand Down Expand Up @@ -160,7 +161,8 @@
e.style.textAlign="center";

var div = document.createElement("div");
div.appendChild(document.createTextNode(day[i]));
div.appendChild(document.createTextNode(day[j+1]));
j++;
e.appendChild(div);
body.appendChild(e);

Expand Down

0 comments on commit 3c6cce6

Please sign in to comment.