Commit 43f8f31437c5bdfc34fc5b38ad7cd511017f9fb9

Authored by Nikita Kulshreshtha
1 parent e0a24ef5

getting the pin which needs to be green.

need to see why this is not happening
400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js
... ... @@ -974,7 +974,12 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
974 974 .select();
975 975 $scope.showAnnotation(selectedPinData);
976 976  
977   -
  977 + angular.forEach($scope.selectedPin, function (value, key) {
  978 + var pinName = 'Arc_' + value;
  979 + var pin = $('aaDetailViewCanvas').getLayer(pinName);
  980 + pin.fillStyle = radialAfterClick;
  981 + alert(pin);
  982 + })
978 983  
979 984 }
980 985  
... ...