Some loading box tweaks

This commit is contained in:
Max Lynch
2013-10-21 16:57:18 -05:00
parent ce5d3e6fde
commit bc6819d5a0
12 changed files with 849 additions and 634 deletions

View File

@@ -22,12 +22,11 @@
.controller('LoadingCtrl', function($scope, Loading) {
$scope.startLoading = function() {
var loading = Loading.show({
width: 200,
height: 100,
animation: 'fade-in',
content: 'Loading'
content: 'Getting current location...'
});
setTimeout(function() {
loading.hide();
}, 2000);
};
});
</script>