diff options
Diffstat (limited to 'scripts/rhizicore.js')
| -rw-r--r-- | scripts/rhizicore.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/rhizicore.js b/scripts/rhizicore.js index 61754f81..e16fa5e7 100644 --- a/scripts/rhizicore.js +++ b/scripts/rhizicore.js @@ -2,7 +2,7 @@ define('rhizicore', ['jquery', 'd3', 'consts', 'signal', 'util', 'history', 'textanalysis', 'model/graph'], -function($, d3, consts, signal, util, history, textanalysis, myGraph) { +function($, d3, consts, signal, util, history, textanalysis, Graph) { var History = history.History; var addednodes = []; @@ -71,7 +71,7 @@ var initDrawingArea = function () { var el = document.body; - graph = new myGraph(el); + graph = new Graph(el); //Zoom scale behavior in zoom.js zoomObject = d3.behavior.zoom().scaleExtent([0.1, 3]).on("zoom", zoom); |
