Skip to content

Commit 9f46d58

Browse files
committed
Repairs the javascript that renders the week-view calendar on the
agenda page. Fixes ietf-tools#1984. Commit ready for merge. - Legacy-Id: 11702
1 parent 184b207 commit 9f46d58

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

ietf/templates/meeting/room-view.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,11 @@
132132
var border = 1;
133133

134134

135-
setInterval("animate()",50);
135+
setInterval("animate",50);
136136

137137
function draw_calendar()
138138
{
139-
window.setTimeout("draw_calendar()",1000);
139+
window.setTimeout("draw_calendar",1000);
140140

141141
var width = document.body.clientWidth;
142142
var height = document.body.clientHeight;

ietf/templates/meeting/week-view.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138

139139
var include = Array();
140140

141-
setInterval("animate()",50);
141+
setInterval("animate",50);
142142

143143
function is_visible(item)
144144
{
@@ -172,7 +172,7 @@
172172

173173
function draw_calendar()
174174
{
175-
window.setTimeout("draw_calendar()",1000);
175+
window.setTimeout("draw_calendar",1000);
176176

177177
var width = document.body.clientWidth;
178178
var height = document.body.clientHeight;

0 commit comments

Comments
 (0)