# HG changeset patch # User luginbue # Date 1026057834 -7200 # Node ID cff6aff17bb86cbab891c38330748fc36da90429 # Parent e6349a389da2522e809bd7605e866f07c6680c24 bugfixes and new module diff -r e6349a389da2 -r cff6aff17bb8 client/digitallibrary/navigation_ie.js --- a/client/digitallibrary/navigation_ie.js Tue May 21 02:40:45 2002 +0200 +++ b/client/digitallibrary/navigation_ie.js Sun Jul 07 18:03:54 2002 +0200 @@ -166,14 +166,14 @@ function mark(refselect) { - if (att[4].split(";").length > 7) { - alert("Only 8 marks are possible at the moment!"); - return; - } - document.all.lay1.onmousedown = function() { var point = new Point(event); + if (att[4].split(";").length > 7) { + alert("Only 8 marks are possible at the moment!"); + return; + } + if ((att[4] != "") && (att[4] != "0/0")) { att[4] += ";"; } else { @@ -182,7 +182,7 @@ att[4] += point.relX + "/" + point.relY; - document.all.lay1.cancleBubble = true; + document.all.lay1.onmousedown = function() {} setMarks(); }