From 906770d3e7b777de411f424661cb5979c4c3f05d Mon Sep 17 00:00:00 2001 From: Mukul Date: Fri, 13 Oct 2017 12:53:48 +0530 Subject: [PATCH] this is solution for the bug 23498 --- 400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js | 6 ++++++ 1 file changed, 6 insertions(+), 0 deletions(-) diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js index 09e8887..7cc58c0 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js +++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js @@ -3910,6 +3910,9 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l document.getElementById('dot').style.display = 'block'; document.getElementById('dot').style.left = ((Globe[0].currentX) - 10) + 'px'; document.getElementById('dot').style.top = ((Globe[0].currentY) + 10) + 'px'; + document.getElementById('bord').style.display = 'block'; + document.getElementById('bord').style.left = ((Globe[0].currentX) - 2) + 'px'; + document.getElementById('bord').style.top = ((Globe[0].currentY) + 1) + 'px'; document.getElementById('sppeachBubble').style.display = 'block'; document.getElementById('sppeachBubble').style.left = (Globe[0].currentX) + 'px'; document.getElementById('sppeachBubble').style.top = (Globe[0].currentY) + 'px'; @@ -4108,6 +4111,9 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l document.getElementById('dot_annotation').style.display = 'block'; document.getElementById('dot_annotation').style.left = ((Globe[0].currentX) - 10) + 'px'; document.getElementById('dot_annotation').style.top = ((Globe[0].currentY) + 10) + 'px'; + document.getElementById('bord_annotation').style.display = 'block'; + document.getElementById('bord_annotation').style.left = ((Globe[0].currentX) - 2) + 'px'; + document.getElementById('bord_annotation').style.top = ((Globe[0].currentY) + 1) + 'px'; document.getElementById('sppeachBubble_annotation').style.display = 'block'; document.getElementById('sppeachBubble_annotation').style.left = (Globe[0].currentX) + 'px'; document.getElementById('sppeachBubble_annotation').style.top = (Globe[0].currentY) + 'px'; -- libgit2 0.21.4