Simon Hunt

Fix link.online() to return true only if BOTH underlying unidirectional links are marked as online.

Change-Id: I2b66e8a0b6f7a1bba488c82f799219e9c1ab5da3
......@@ -202,7 +202,7 @@
var s = lnk.fromSource,
t = lnk.fromTarget,
both = lnk.source.online && lnk.target.online;
return both && ((s && s.online) || (t && t.online));
return both && ((s && s.online) && (t && t.online));
},
linkWidth: function () {
var s = lnk.fromSource,
......