Commit 13d72a3b33cec2c70c66697145c51a6a129f369e
1 parent
aacef62a
Defect fix on removal of annotation on TBox close but have issue of sometimes
Showing
1 changed file
with
4 additions
and
2 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -4158,9 +4158,11 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo |
4158 | 4158 | } |
4159 | 4159 | |
4160 | 4160 | $scope.CloseTransparencyBox = function () { |
4161 | + | |
4162 | + $('.com_anno').css('display', 'none'); | |
4163 | + | |
4161 | 4164 | var tBox = document.getElementById('transparencyCanvas'); |
4162 | - // debugger; | |
4163 | - // alert('mouseDown is called'); | |
4165 | + | |
4164 | 4166 | if (tBox != null) { |
4165 | 4167 | tBox.parentNode.removeChild(tBox) |
4166 | 4168 | var elements = document.getElementsByClassName('ui-icon ui-icon-gripsmall-diagonal-se'); | ... | ... |