I\'m new in AngularJS and trying to find the way how to display wait message while data loading? I mean data starts loading, display message and remove it when data loading is d
Loading...
JS
$scope.data.dataLoading = true; return someService.getData().then(function (results) { ... }).finally(function () { $scope.data.dataLoading = false; });