mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
17 lines
399 B
JavaScript
17 lines
399 B
JavaScript
---
|
|
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);
|
|
};
|
|
});
|