Browse Source

Show same icons for alert and lost nodes

Michael Schwarz 8 years ago
parent
commit
83e773f24a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/map.js

+ 1 - 1
lib/map.js

@@ -134,7 +134,7 @@ define(["map/clientlayer", "map/labelslayer",
     var iconOnline  = { color: "#1566A9", fillColor: "#1566A9", radius: 6, fillOpacity: 0.5, opacity: 0.5, weight: 2, className: "stroke-first" }
     var iconOffline = { color: "#D43E2A", fillColor: "#D43E2A", radius: 3, fillOpacity: 0.5, opacity: 0.5, weight: 1, className: "stroke-first" }
     var iconLost    = { color: "#D43E2A", fillColor: "#D43E2A", radius: 6, fillOpacity: 0.8, opacity: 0.8, weight: 1, className: "stroke-first" }
-    var iconAlert   = { color: "#D43E2A", fillColor: "#D43E2A", radius: 6, fillOpacity: 0.8, opacity: 0.8, weight: 2, className: "stroke-first node-alert" }
+    var iconAlert   = iconLost;
     var iconNew     = { color: "#1566A9", fillColor: "#93E929", radius: 6, fillOpacity: 1.0, opacity: 0.5, weight: 2 }
 
     return function (config, linkScale, sidebar, router, buttons) {