Commit 925fe9f510961933caefcb56d4331a6e2d739ae9
1 parent
5f00d818
removing annotation on zoom in/out.
wrote some comments.
Showing
1 changed file
with
5 additions
and
4 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -4509,10 +4509,10 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo |
4509 | 4509 | |
4510 | 4510 | $scope.enableZoom = function () { |
4511 | 4511 | |
4512 | - //$('#sppeachBubble_annotation').css('display', 'none'); | |
4512 | + //remove speech bubble | |
4513 | + $('#sppeachBubble').css('display', 'none'); | |
4513 | 4514 | |
4514 | - //$("#bord_annotation").css("display", "none"); | |
4515 | - //$("#dot_annotation").css("display", "none"); | |
4515 | + $("#dot").css("display", "none"); | |
4516 | 4516 | |
4517 | 4517 | $scope.terminateCurrentlyRunningWPs(); |
4518 | 4518 | |
... | ... | @@ -6933,10 +6933,11 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo |
6933 | 6933 | $timeout(function () { |
6934 | 6934 | $rootScope.isHighLight = false; |
6935 | 6935 | |
6936 | + //removing speechbubble | |
6936 | 6937 | $('#sppeachBubble').css('display', 'none'); |
6937 | - | |
6938 | 6938 | $("#dot").css("display", "none"); |
6939 | 6939 | |
6940 | + //redraw body of respective layer | |
6940 | 6941 | $scope.CalculateImageCordinates($rootScope.viewOrientationId) |
6941 | 6942 | }, 500); |
6942 | 6943 | ... | ... |