Commit e0d22427a5c20bb91d83a5d1a815ccb2cd580f2b

Authored by Nikita Kulshreshtha
1 parent 7cdeb19c

sometimes the view is not enabled after draw so introduced a code

400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... ... @@ -1831,6 +1831,12 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l
1831 1831 $scope.DisableUI();
1832 1832 $scope.highLightBody();
1833 1833 }
  1834 + else {
  1835 + $rootScope.isLoading = false;
  1836 + $('#spinner').css('visibility', 'hidden');
  1837 + //debugger;
  1838 + $scope.EnableUI();
  1839 + }
1834 1840 }
1835 1841 else {
1836 1842 $rootScope.isLoading = false;
... ...