Commit 1540fdc5890473d674fa3885334a2893cb4523a3
1 parent
13d72a3b
Refs: #5941
We are able to show hide on show hide structure box
Showing
1 changed file
with
4 additions
and
3 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -4507,9 +4507,10 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo |
4507 | 4507 | } |
4508 | 4508 | |
4509 | 4509 | $scope.enableShowHideStructureBox = function () { |
4510 | - $(".com").remove(); | |
4511 | - $('#dot').remove(); | |
4512 | - $('#sppeachBubble').remove(); | |
4510 | + | |
4511 | + $(".com").toggle(); | |
4512 | + $('#dot').toggle(); | |
4513 | + $('#sppeachBubble').toggle() | |
4513 | 4514 | } |
4514 | 4515 | |
4515 | 4516 | ... | ... |