Commit ed3ab63236cb4c44046960ff8a6e720e12d99717

Authored by Mukul Rajput
1 parent c982ce6d

this is solution for the bug 24987

400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js
... ... @@ -1360,7 +1360,7 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou
1360 1360 }
1361 1361  
1362 1362 $rootScope.hidePins = function () {
1363   -
  1363 + $("#dropdownMenu221").addClass("aaSystemDisable");
1364 1364 $rootScope.isLoading = true;
1365 1365 $('#spinner').css('visibility', 'visible');
1366 1366 $scope.hideSpeechBubble();
... ... @@ -1389,6 +1389,9 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou
1389 1389 }
1390 1390  
1391 1391 $scope.showAllPinsAfterHide = function (event) {
  1392 + if ($("#dropdownMenu221").hasClass("aaSystemDisable")) {
  1393 + $("#dropdownMenu221").removeClass("aaSystemDisable");
  1394 + }
1392 1395 $rootScope.isLoading = true;
1393 1396 $('#spinner').css('visibility', 'visible');
1394 1397 $scope.isHidePinBtnClicked = false;
... ... @@ -1415,6 +1418,9 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou
1415 1418  
1416 1419  
1417 1420 $scope.showSelectedPins = function () {
  1421 + if ($("#dropdownMenu221").hasClass("aaSystemDisable")) {
  1422 + $("#dropdownMenu221").removeClass("aaSystemDisable");
  1423 + }
1418 1424 $rootScope.isLoading = true;
1419 1425 $('#spinner').css('visibility', 'visible');
1420 1426  
... ...
400-SOURCECODE/AIAHTML5.Web/themes/default/css/bootstrap/3.3.6/main.css
... ... @@ -1100,4 +1100,11 @@ li[disabled], a[disabled] {
1100 1100 }
1101 1101 a[disabled] {
1102 1102 color: #aaa !important;
1103   -}
1104 1103 \ No newline at end of file
  1104 +}
  1105 +
  1106 +
  1107 +.aaSystemDisable
  1108 + {
  1109 + pointer-events : none;
  1110 + opacity : 0.5;
  1111 +}
... ...