Commit 1f6f64e923401e1c0bfd51eb6939a144e3433da4

Authored by Amrita Vishnoi
2 parents bd06ffaa ed3ab632

Manual Merge for bug 24987

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