1
0
Fork 0

GraphViewer: Fixed import in index html

This commit is contained in:
Michael Hackstein 2013-06-11 15:59:11 +02:00
parent 804843d753
commit 4fd8565973
2 changed files with 2 additions and 1 deletions

View File

@ -108,6 +108,7 @@
<script src="js/graphViewer/graph/eventDispatcher.js"></script>
<script src="js/graphViewer/graph/nodeShaper.js"></script>
<script src="js/graphViewer/graph/edgeShaper.js"></script>
<script src="js/graphViewer/graph/abstractAdapter.js"></script>
<script src="js/graphViewer/graph/arangoAdapter.js"></script>
<script src="js/graphViewer/graph/zoomManager.js"></script>
<script src="js/graphViewer/graph/nodeReducer.js"></script>

View File

@ -45,7 +45,7 @@ window.graphView = Backbone.View.extend({
}
$("#background").remove();
var ui = new GraphViewerUI($("#content"), aaconfig, 940, 680, config);
var ui = new GraphViewerUI($("#content")[0], aaconfig, 940, 680, config);
},