--- loncom/html/res/adm/pages/menu.html 2002/05/24 19:45:14 1.55
+++ loncom/html/res/adm/pages/menu.html 2002/05/24 20:43:12 1.56
@@ -4,7 +4,7 @@ The LearningOnline Network with CAPA
Remote Control
//
-// $Id: menu.html,v 1.55 2002/05/24 19:45:14 www Exp $
+// $Id: menu.html,v 1.56 2002/05/24 20:43:12 www Exp $
//
// Copyright Michigan State University Board of Trustees
//
@@ -105,7 +105,13 @@ var clientwindow=opener;
function advanceclock() {
clock.setTime(clock.getTime()+1000);
- statusbot=clock.getHours()+':'+clock.getMinutes()+':'+clock.getSeconds();
+ var secs=""+clock.getSeconds();
+ if (secs.length<2) { secs="0"+secs; }
+ var mins=""+clock.getMinutes();
+ if (mins.length<2) { mins="0"+secs; }
+ var hours=""+clock.getHours();
+ if (hours.length<2) { hours=" "+hours; }
+ statusbot=hours+':'+mins+':'+secs;
if (!dislocked) { display(); }
setTimeout('advanceclock();',1000);
}