Commit 8e9ae6bfddbcf3b022033effee874a6d095394ea

Authored by Nikita Kulshreshtha
1 parent 9dc05e92

this issue was introduced after increasing the timeout. Reverted the increased timeout.

also there were issue in female, same terms were populating in different body views.
bodyview id was not set in localstorage. resolved this also,
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... ... @@ -571,7 +571,7 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l
571 571 if ($('#daImagePanel').offset().left == 0)
572 572 $('#daImagePanel').css("left", '1px');
573 573  
574   - }, 550);
  574 + }, 350);
575 575 }
576 576 }
577 577 else {
... ... @@ -7712,6 +7712,8 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l
7712 7712  
7713 7713 $rootScope.isLoading = true;
7714 7714 $('#spinner').css('visibility', 'visible');
  7715 +
  7716 + localStorage.setItem("currentBodyViewId", $rootScope.voId);
7715 7717 //1.
7716 7718 $scope.loadSelectedBodyView($rootScope.voId);
7717 7719  
... ...