3
When I call the call show()
passing the attribute content: '...'
loading text is changed as below.
$rootScope.loading = $ionicLoading.show({
content: 'Loading...'
});
But when I use template, as below, it doesn’t work.
$rootScope.loading = $ionicLoading.show({
template: 'Loading...'
});
Why ? what is the difference between them ? in Ionic documentation nor does it contain any mention of content
.