From ac9fca59c1daec9570ef5659d00352e5f9f66b9a Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 7 Feb 2018 11:43:16 +0530 Subject: [PATCH] Atlas Anatomy > All the pins are appear on the system even when Show Selected Pins button is selected. --- 400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js | 9 +++++++++ 1 file changed, 9 insertions(+), 0 deletions(-) diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js index 69e4ab5..e938ec4 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js +++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js @@ -823,9 +823,16 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou .select(); console.log(pinDataWithFirstTermNumber); $scope.listMangerID = []; + $scope.activePinArray = []; for (var i = 0; i <= pinDataWithFirstTermNumber.length - 1; i++) { $scope.listMangerID.push('PinArc_' + pinDataWithFirstTermNumber[i]._PinId); + $scope.activePinArray.push('PinArc_' + pinDataWithFirstTermNumber[i]._PinId); } + + + + + console.log($scope.listMangerID); $scope.MultiLanguageAnnationArray = []; @@ -1617,6 +1624,8 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou $scope.showSelectedPins = function () { + $("#listManager").css("display", "none"); + $("#optionsListManagerTab").removeClass("active"); $("#dropdownMenu221").addClass("aaSystemDisable"); $rootScope.isLoading = true; $('#spinner').css('visibility', 'visible'); -- libgit2 0.21.4