Commit 8e9ae6bfddbcf3b022033effee874a6d095394ea
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,
Showing
1 changed file
with
3 additions
and
1 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
@@ -571,7 +571,7 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l | @@ -571,7 +571,7 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l | ||
571 | if ($('#daImagePanel').offset().left == 0) | 571 | if ($('#daImagePanel').offset().left == 0) |
572 | $('#daImagePanel').css("left", '1px'); | 572 | $('#daImagePanel').css("left", '1px'); |
573 | 573 | ||
574 | - }, 550); | 574 | + }, 350); |
575 | } | 575 | } |
576 | } | 576 | } |
577 | else { | 577 | else { |
@@ -7712,6 +7712,8 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l | @@ -7712,6 +7712,8 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l | ||
7712 | 7712 | ||
7713 | $rootScope.isLoading = true; | 7713 | $rootScope.isLoading = true; |
7714 | $('#spinner').css('visibility', 'visible'); | 7714 | $('#spinner').css('visibility', 'visible'); |
7715 | + | ||
7716 | + localStorage.setItem("currentBodyViewId", $rootScope.voId); | ||
7715 | //1. | 7717 | //1. |
7716 | $scope.loadSelectedBodyView($rootScope.voId); | 7718 | $scope.loadSelectedBodyView($rootScope.voId); |
7717 | 7719 |