diff options
| author | Owen <despito@MacBook-Pro-de-Despito.local> | 2014-08-07 15:22:31 +0300 |
|---|---|---|
| committer | Owen <despito@MacBook-Pro-de-Despito.local> | 2014-08-07 15:22:41 +0300 |
| commit | 038e4ed146e5a29933cc8dc34004f0962d1c9987 (patch) | |
| tree | 586a516cd52897f8fe239f699796af81c40a2430 /scripts/gant.js | |
| parent | bf2f0bf85ff9cc287b69fa8a2a67e735ffee130b (diff) | |
Issue #26
nodes didn't appear because the type selection index was undefined in
the 0 to N_1 loop
Diffstat (limited to 'scripts/gant.js')
| -rw-r--r-- | scripts/gant.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gant.js b/scripts/gant.js index cabca200..ae849dd6 100644 --- a/scripts/gant.js +++ b/scripts/gant.js @@ -10,7 +10,7 @@ function checkSwitch(checkswitch) { $('body').scrollLeft(0); graphstate = "GRAPH"; - graph.updateGraph(); + graph.update(); $('.status').fadeOut(600); @@ -27,7 +27,7 @@ function checkSwitch(checkswitch) { graphstate = "GANTT"; - graph.updateGraph(); + graph.update(); $('.status').fadeIn(600); |
