259
259
/* Update the summary box (completed, attempts) with the new values we got
260
260
* back from the tutorialservice.
262
264
var summaryli = document.getElementById("summaryli_" + exerciseid);
263
265
var summarycomplete = document.getElementById("summarycomplete_"
265
267
var summaryattempts = document.getElementById("summaryattempts_"
267
271
summaryli.setAttribute("class",
268
272
(testresponse.completed ? "complete" : "incomplete"));
269
273
summarycomplete.removeChild(summarycomplete.lastChild);