details:
http://www.bx.psu.edu/hg/galaxy/rev/19c03a96b338
changeset: 1485:19c03a96b338
user: James Taylor <james(a)jamestaylor.org>
date: Wed Aug 27 15:51:59 2008 -0400
description:
Bugfix for workflow editor.
1 file(s) affected in this change:
static/scripts/galaxy.workflow_editor.canvas.js
diffs (13 lines):
diff -r 30fefdf743c2 -r 19c03a96b338 static/scripts/galaxy.workflow_editor.canvas.js
--- a/static/scripts/galaxy.workflow_editor.canvas.js Wed Aug 27 15:35:14 2008 -0400
+++ b/static/scripts/galaxy.workflow_editor.canvas.js Wed Aug 27 15:51:59 2008 -0400
@@ -483,7 +483,8 @@
// zIndex tracking for bring to front
zmax = $("#canvas-container").data( "zmax" )
if ( ! zmax ) {
- zmax = 0;
+ // Start above level where connectors are drawn
+ zmax = 20;
}
f.css( "zIndex", zmax + 1 );
$("#canvas-container").data( "zmax", zmax + 1 );