Diff for /loncom/html/res/adm/pages/menu.html between versions 1.10 and 1.11

version 1.10, 2000/10/05 15:31:42 version 1.11, 2000/10/10 10:05:17
Line 88  function gopost(url,postdata) { Line 88  function gopost(url,postdata) {
 }  }
   
 function annotate() {  function annotate() {
    go('');     annotator=window.open('','Annotator','width=365,height=265,scrollbars=0');
    window.open("http://"+clienthost+"/adm/annotations?url_new="     anndoc=annotator.document;
                +clientwindow.location.href, "Annotator",      anstr="<html><body onload='Javascript:document.goannotate.submit();'>";
                "width=365,height=265,scrollbars=0");     anstr+="<form name='goannotate' target='Annotator' method='post' action='/adm/annotations'>";
      anstr+="<input type='hidden' name='urlnew' value='"+clientwindow.location.href+"'>";
      anstr+="</form></body></html>";
      anndoc.write(anstr);
      anndoc.close();
 }  }
   
 function set_bookmark() {  function set_bookmark() {

Removed from v.1.10  
changed lines
  Added in v.1.11


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