From 5d21825bfacec31b9c5dc9792a344b083e0c59f0 Mon Sep 17 00:00:00 2001 From: Exodus4D Date: Mon, 17 Oct 2016 14:26:33 +0200 Subject: [PATCH] - fixed overlapping system information, closed #341 --- js/app/map/map.js | 3 +++ public/js/v1.1.6/app/map/map.js | 3 +++ 2 files changed, 6 insertions(+) diff --git a/js/app/map/map.js b/js/app/map/map.js index 09ec0875..71d2f228 100644 --- a/js/app/map/map.js +++ b/js/app/map/map.js @@ -1624,6 +1624,9 @@ define([ var hoverSystem = $(this).parents('.' + config.systemClass); var hoverSystemId = hoverSystem.attr('id'); + // bring system in front (increase zIndex) + hoverSystem.updateSystemZIndex(); + // get ship counter and calculate expand height var userCount = parseInt( hoverSystem.data('userCount') ); diff --git a/public/js/v1.1.6/app/map/map.js b/public/js/v1.1.6/app/map/map.js index 09ec0875..71d2f228 100644 --- a/public/js/v1.1.6/app/map/map.js +++ b/public/js/v1.1.6/app/map/map.js @@ -1624,6 +1624,9 @@ define([ var hoverSystem = $(this).parents('.' + config.systemClass); var hoverSystemId = hoverSystem.attr('id'); + // bring system in front (increase zIndex) + hoverSystem.updateSystemZIndex(); + // get ship counter and calculate expand height var userCount = parseInt( hoverSystem.data('userCount') );