When I call the function show()
passing the attribute content: '...'
the text of the loading is changed, as below.
$rootScope.loading = $ionicLoading.show({
content: 'Loading...'
});
But when I use template, as below, it does not work.
$rootScope.loading = $ionicLoading.show({
template: 'Loading...'
});
Why? What is the difference between them ? in the ionic documentation nor has mention of content
.