--- name: complete component: $ionicLoading --- angular.module('complete', ['ionic']) .controller('LoadingCtrl', function($scope, $ionicLoading) { $scope.loadingOptions = { duration: 1000, delay: 0, template: '\n
\nLoading...', noBackdrop: false }; $scope.showLoading = function() { $ionicLoading.show($scope.loadingOptions); }; });