ONOS-1678 - TopoView - empty detail panel when navigating away and back. FIXED.

Change-Id: If2df3abb78838cbd666353474ff276e0d1fb4610
diff --git a/web/gui/src/main/webapp/app/view/topo/topo.js b/web/gui/src/main/webapp/app/view/topo/topo.js
index 8479823..cec7cef 100644
--- a/web/gui/src/main/webapp/app/view/topo/topo.js
+++ b/web/gui/src/main/webapp/app/view/topo/topo.js
@@ -303,7 +303,10 @@
         flash.enable(false);
         toggleInstances(prefsState.insts);
         toggleSummary(prefsState.summary);
-        toggleDetails(prefsState.detail);
+        // NOTE: the detail flag means "use data if you have it"; it does not
+        //       mean the panel is on-screen. So, assume that it always starts
+        //       off-screen since nothing is selected initially...
+        toggleDetails(false);
         toggleSprites(prefsState.spr);
         flash.enable(true);
     }