UNPKG

ionic-cordova-gulp-seed

Version:

Ionic & Cordova & Gulp seed with organized code, tests, bower support and some other stuff. Originated from ionic-angular-cordova-seed.

17 lines (16 loc) 399 B
--- name: complete component: $ionicLoading --- angular.module('complete', ['ionic']) .controller('LoadingCtrl', function($scope, $ionicLoading) { $scope.loadingOptions = { duration: 1000, delay: 0, template: '<i class="icon ion-loading-c"></i>\n<br/>\nLoading...', noBackdrop: false }; $scope.showLoading = function() { $ionicLoading.show($scope.loadingOptions); }; });