ItEr13S14ArquitecturaClientesItEr11S12: Fixing bug present in drawing arrow. It was using a unitialized variable instead of getImagesDir.

This commit is contained in:
Óscar González Fernández 2009-06-16 22:07:29 +02:00 committed by Javier Moran Rua
parent 361f3ea7d3
commit 574ff9bb52

View file

@ -91,7 +91,7 @@ zkPlanner.drawArrow = function(arrow, orig, dest){
deparrow.style.top = yend - 10 + "px";
deparrow.style.left = xend - 5 + "px";
if ( yorig > yend ) {
deparrow.src = baseURL+"arrow4.png";
deparrow.src = this.getImagesDir()+"arrow4.png";
deparrow.style.top = yend + "px";
}
} else {