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

Change-Id: I2b66e8a0b6f7a1bba488c82f799219e9c1ab5da3
diff --git a/web/gui/src/main/webapp/app/view/topo/topoModel.js b/web/gui/src/main/webapp/app/view/topo/topoModel.js
index fb98fc2..9376869 100644
--- a/web/gui/src/main/webapp/app/view/topo/topoModel.js
+++ b/web/gui/src/main/webapp/app/view/topo/topoModel.js
@@ -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,