1
0
Fork 0

GraphViewer: Fixed Optical Issue in admin-graph-tab

This commit is contained in:
Michael Hackstein 2013-05-27 11:08:27 +02:00
parent e024f1b0fe
commit bad5fec046
1 changed files with 1 additions and 3 deletions

View File

@ -34,16 +34,14 @@ window.graphView = Backbone.View.extend({
}; };
if (label !== undefined && label !== "") { if (label !== undefined && label !== "") {
console.log(label);
config = { config = {
nodeShaper: { nodeShaper: {
label: label label: label
} }
} }
console.log(config);
} }
$("#creationDialog").remove(); $("#background").remove();
ui = new GraphViewerUI(document.getElementById("content"), aaconfig, 940, 680, config); ui = new GraphViewerUI(document.getElementById("content"), aaconfig, 940, 680, config);
}, },