ItEr13S14ArquitecturaClientesItEr11S12: Fixing bug present in drawing arrow. It was using a unitialized variable instead of getImagesDir.
This commit is contained in:
parent
361f3ea7d3
commit
574ff9bb52
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue