Added 'Loading...' message to all lists and sublists.

This commit is contained in:
chouseknecht
2013-05-26 23:36:54 -04:00
parent 9e519400bc
commit 2a0f528954
6 changed files with 17 additions and 2 deletions

View File

@@ -30,6 +30,7 @@ angular.module('RefreshHelper', ['RestServices', 'Utilities'])
scope[iterator + 'Count'] = data.count;
scope[iterator + 'PageCount'] = Math.ceil((data.count / scope[iterator + 'PageSize']));
scope[iterator + 'SearchSpin'] = false;
scope[iterator + 'Loading'] = false;
scope[set] = data['results'];
scope.$emit('PostRefresh');
})