Diff for /loncom/html/res/adm/pages/menu.html between versions 1.96 and 1.98

version 1.96, 2003/04/30 21:26:47 version 1.98, 2003/05/23 16:37:30
Line 59  var currentSymb=''; Line 59  var currentSymb='';
 var reloadSymb='';  var reloadSymb='';
 var currentStale=1;  var currentStale=1;
 var menucltim;  var menucltim;
   var noclient=0;
   
 var clockdelta=0;  var clockdelta=0;
   
Line 138  function advanceclock() { Line 139  function advanceclock() {
 }  }
   
 function windowcheck() {  function windowcheck() {
    if (clientwindow==null || clientwindow.closed) {     if (noclient || (clientwindow==null || clientwindow.closed)) {
       clientwindow=window.open("http://"+clienthost+"/",'',        clientwindow=window.open("http://"+clienthost+"/",'',
       "height=400,width=440,"+        "height=400,width=440,"+
       "scrollbars=1,toolbar=1,status=1,resizable=1,location=1,"+        "scrollbars=1,toolbar=1,status=1,resizable=1,location=1,"+
Line 146  function windowcheck() { Line 147  function windowcheck() {
    }     }
    clientwindow.name='loncapaclient';     clientwindow.name='loncapaclient';
    clientwindow.menuwindow=self;     clientwindow.menuwindow=self;
      noclient=0;
    extenddispclose();     extenddispclose();
 }  }
   
Line 278  function go(url) { Line 280  function go(url) {
        currentURL = null;         currentURL = null;
        currentSymb= null;         currentSymb= null;
        clientwindow.window.location.href="http://"+clienthost+url;         clientwindow.window.location.href="http://"+clienthost+url;
          noclient=0;
    }     }
 }  }
   
Line 292  function gopost(url,postdata) { Line 295  function gopost(url,postdata) {
       this.document.server.url.value='';        this.document.server.url.value='';
       this.document.server.postsymb.value='';        this.document.server.postsymb.value='';
       this.document.server.submit();        this.document.server.submit();
         noclient=0;
    }     }
 }  }
   
Line 306  function gocmd(url,cmd) { Line 310  function gocmd(url,cmd) {
       this.document.server.url.value=currentURL;        this.document.server.url.value=currentURL;
       this.document.server.postsymb.value=currentSymb;        this.document.server.postsymb.value=currentSymb;
       this.document.server.submit();        this.document.server.submit();
         noclient=0;
    }     }
 }  }
   

Removed from v.1.96  
changed lines
  Added in v.1.98


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>