Commit a62e274bf2958168698b3e6a04bdcd26fbf0ddbd
Merge branch '24925' of http://gitlab.ebix.com/ADAM/AIAHTML5 into Develop-IPAD-MAC
Showing
1 changed file
with
9 additions
and
0 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js
... | ... | @@ -834,9 +834,16 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou |
834 | 834 | .select(); |
835 | 835 | console.log(pinDataWithFirstTermNumber); |
836 | 836 | $scope.listMangerID = []; |
837 | + $scope.activePinArray = []; | |
837 | 838 | for (var i = 0; i <= pinDataWithFirstTermNumber.length - 1; i++) { |
838 | 839 | $scope.listMangerID.push('PinArc_' + pinDataWithFirstTermNumber[i]._PinId); |
840 | + $scope.activePinArray.push('PinArc_' + pinDataWithFirstTermNumber[i]._PinId); | |
839 | 841 | } |
842 | + | |
843 | + | |
844 | + | |
845 | + | |
846 | + | |
840 | 847 | console.log($scope.listMangerID); |
841 | 848 | $scope.MultiLanguageAnnationArray = []; |
842 | 849 | |
... | ... | @@ -1628,6 +1635,8 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou |
1628 | 1635 | |
1629 | 1636 | |
1630 | 1637 | $scope.showSelectedPins = function () { |
1638 | + $("#listManager").css("display", "none"); | |
1639 | + $("#optionsListManagerTab").removeClass("active"); | |
1631 | 1640 | $("#dropdownMenu221").addClass("aaSystemDisable"); |
1632 | 1641 | $rootScope.isLoading = true; |
1633 | 1642 | $('#spinner').css('visibility', 'visible'); | ... | ... |