diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js
index 4f32134..83913fe 100644
--- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js
+++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js
@@ -55,6 +55,8 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou
};
$scope.loadForModuleById = function (moduleId) {
+ $rootScope.isLoading = true;
+ $('#spinner').css('visibility', 'visible');
$rootScope.openModules.push({ "ModuleId": 2 });
if ($rootScope.refreshcheck == null) {
$location.path('/');
@@ -80,7 +82,10 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou
}
if ($rootScope.getLocalStorageValue('AAGridViewScroll') !== null && $location.url() == "/tile-view-list") {
$('html, body').animate({ scrollTop: $rootScope.getLocalStorageValue('AAGridViewScroll') }, 'slow');
+
}
+ $rootScope.isLoading = false;
+ $('#spinner').css('visibility', 'hidden');
}, 100);
//console.log(JSON.stringify(result, null, 4));
},