Commit 7f6ef4e5a773fd1e67d2d36cb2f9448650ede800

Authored by unknown
1 parent b64d9472

25382 : loader keeps on loading on selection of skin

400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
@@ -2986,6 +2986,18 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l @@ -2986,6 +2986,18 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l
2986 2986
2987 } 2987 }
2988 } 2988 }
  2989 +
  2990 + $timeout(function () {
  2991 +
  2992 + if(document.getElementById("typedTermName").value == "Skin"){
  2993 + // if ($rootScope.viewOrientationId == "1" || $rootScope.viewOrientationId == "4") {
  2994 + $rootScope.isLoading = false;
  2995 + $('#spinner').css('visibility', 'hidden');
  2996 + $scope.EnableUI();
  2997 + }
  2998 + }, 800);
  2999 +
  3000 +
2989 }, 100) 3001 }, 100)
2990 } 3002 }
2991 3003