From e74801616fed25a6bd3fc651bfa4ce4789ce3874 Mon Sep 17 00:00:00 2001 From: Mukul Date: Wed, 30 Aug 2017 12:58:07 +0530 Subject: [PATCH] this is solution for the bug state maintain Grid in AA --- 400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js index 6dd7e3a..9212dda 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js +++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js @@ -139,7 +139,7 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou } ) if ($rootScope.getLocalStorageValue('AAGridViewScroll') !== null) { - $('html, body').animate({ scrollTop: $rootScope.getLocalStorageValue('AAGridViewScroll') }, 'slow'); + setTimeout(function () { $('html, body').animate({ scrollTop: $rootScope.getLocalStorageValue('AAGridViewScroll') }, 'slow'); }, 300); } } -- libgit2 0.21.4