Commit d58e31f76c93300b62f07f69d050d8e302b1e196
1 parent
c71aa106
Merge Request #613 merged
Showing
1 changed file
with
4 additions
and
1 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js
... | ... | @@ -1565,7 +1565,10 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou |
1565 | 1565 | .select(); |
1566 | 1566 | |
1567 | 1567 | $scope.showAnnotation(pinDataForTerm, false, false, true); |
1568 | - | |
1568 | + // maintaing scroll position on selection of options in list manager. | |
1569 | + var annotationTopPos = $(".common-drag").css("top").split("p"); | |
1570 | + $("#canvasDiv").scrollTop(annotationTopPos[0]); | |
1571 | + | |
1569 | 1572 | $scope.IsSearchVisible = false; |
1570 | 1573 | } |
1571 | 1574 | ... | ... |