|
@@ -384,6 +384,7 @@ define([
|
|
|
}
|
|
|
},
|
|
|
onGetTimers: function (timers) {
|
|
|
+ context.graphTimers = context.wu.getGraphTimers(context.GraphName);
|
|
|
}
|
|
|
});
|
|
|
});
|
|
@@ -420,7 +421,7 @@ define([
|
|
|
},
|
|
|
|
|
|
loadGraphFromXGMML: function (xgmml) {
|
|
|
- if (this.global.loadXGMML(xgmml, false, this.wu.getGraphTimers(this.params.GraphName))) {
|
|
|
+ if (this.global.loadXGMML(xgmml, false, this.graphTimers)) {
|
|
|
this.global.setMessage("..."); // Just in case it decides to render ---
|
|
|
var initialSelection = [];
|
|
|
if (this.overview.depth.get("value") === -1) {
|
|
@@ -445,7 +446,7 @@ define([
|
|
|
},
|
|
|
|
|
|
mergeGraphFromXGMML: function (xgmml) {
|
|
|
- if (this.global.loadXGMML(xgmml, true, this.wu.getGraphTimers(this.params.GraphName))) {
|
|
|
+ if (this.global.loadXGMML(xgmml, true, this.graphTimers)) {
|
|
|
this.global.setMessage("..."); // Just in case it decides to render ---
|
|
|
this.refreshOverviewXGMML();
|
|
|
this.refreshMainXGMML();
|