From f3fd4b1325e02265f3d93691083522a30e896db7 Mon Sep 17 00:00:00 2001 From: Farruco Sanjurjo Date: Tue, 10 Aug 2010 16:01:24 +0200 Subject: [PATCH] Minor bug fixing * Added missing
tag at GanttPanel's mold * Changed this.uuid by this.id at TaskComponent's mold, as on this case it has different meanings * Added missing ">" symbol at TaskList's mold * Added missing tag at TaskRow's mold FEA: ItEr02S03MigracionZK5 --- .../src/main/resources/web/js/ganttz/mold/gantt-panel.js | 4 +++- .../main/resources/web/js/ganttz/mold/task-component.js | 4 ++-- .../src/main/resources/web/js/ganttz/mold/task-list.js | 2 +- .../src/main/resources/web/js/ganttz/mold/task-row.js | 9 +++++---- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/ganttzk/src/main/resources/web/js/ganttz/mold/gantt-panel.js b/ganttzk/src/main/resources/web/js/ganttz/mold/gantt-panel.js index 2f21c7607..e82de90d0 100644 --- a/ganttzk/src/main/resources/web/js/ganttz/mold/gantt-panel.js +++ b/ganttzk/src/main/resources/web/js/ganttz/mold/gantt-panel.js @@ -4,13 +4,15 @@ function(out){ this.domAttrs_(), '>'); - out.push('
'); for (var w = this.firstChild; w; w = w.nextSibling) w.redraw(out); out.push('
'); out.push(''); + out.push('
'); + out.push('
', '
', '
'); diff --git a/ganttzk/src/main/resources/web/js/ganttz/mold/task-component.js b/ganttzk/src/main/resources/web/js/ganttz/mold/task-component.js index 8dc5fb10c..8d6f53c89 100644 --- a/ganttzk/src/main/resources/web/js/ganttz/mold/task-component.js +++ b/ganttzk/src/main/resources/web/js/ganttz/mold/task-component.js @@ -4,12 +4,12 @@ function(out){ * onMouseOut="zkTasklist.hideTooltip('tasktooltip${self.uuid}');"> * */ out.push('
'); out.push('
', this.getLabelsText(),'
'); out.push('
'); - out.push('
', this.getResourcesText(),'
'); + out.push('
', this.getResourcesText(),'
'); out.push('
'); out.push('
'); diff --git a/ganttzk/src/main/resources/web/js/ganttz/mold/task-list.js b/ganttzk/src/main/resources/web/js/ganttz/mold/task-list.js index a87e4f7d2..767ae1600 100644 --- a/ganttzk/src/main/resources/web/js/ganttz/mold/task-list.js +++ b/ganttzk/src/main/resources/web/js/ganttz/mold/task-list.js @@ -5,7 +5,7 @@ function(out){ out.push('
'); out.push('
'); - out.push('
'); for(var w = this.firstChild; w; w = w.nextSibling) w.redraw(out); out.push(''); - for(var w = this.firstChild; w; w = w.nextSibling) - w.redraw(out); - out.push('
'); - out.push('
'); + for(var w = this.firstChild; w; w = w.nextSibling) + w.redraw(out); + out.push('
'); + out.push('
'); + out.push('
'); } \ No newline at end of file