Commit ac9fca59c1daec9570ef5659d00352e5f9f66b9a

Authored by unknown
1 parent 4ee8111d

Atlas Anatomy > All the pins are appear on the system even when Show Selected Pi…

…ns button is selected.
400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js
... ... @@ -823,9 +823,16 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou
823 823 .select();
824 824 console.log(pinDataWithFirstTermNumber);
825 825 $scope.listMangerID = [];
  826 + $scope.activePinArray = [];
826 827 for (var i = 0; i <= pinDataWithFirstTermNumber.length - 1; i++) {
827 828 $scope.listMangerID.push('PinArc_' + pinDataWithFirstTermNumber[i]._PinId);
  829 + $scope.activePinArray.push('PinArc_' + pinDataWithFirstTermNumber[i]._PinId);
828 830 }
  831 +
  832 +
  833 +
  834 +
  835 +
829 836 console.log($scope.listMangerID);
830 837 $scope.MultiLanguageAnnationArray = [];
831 838  
... ... @@ -1617,6 +1624,8 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou
1617 1624  
1618 1625  
1619 1626 $scope.showSelectedPins = function () {
  1627 + $("#listManager").css("display", "none");
  1628 + $("#optionsListManagerTab").removeClass("active");
1620 1629 $("#dropdownMenu221").addClass("aaSystemDisable");
1621 1630 $rootScope.isLoading = true;
1622 1631 $('#spinner').css('visibility', 'visible');
... ...