Skip to content

Commit 0d3718c

Browse files
committed
fix(ionicLoading): make showDelay default to 0 (was 2000)
1 parent 43bc57a commit 0d3718c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/ext/angular/src/service/ionicLoading.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ angular.module('ionic.service.loading', ['ionic.ui.loading'])
55
/**
66
* Load an action sheet with the given template string.
77
*
8-
* A new isolated scope will be created for the
8+
* A new isolated scope will be created for the
99
* action sheet and the new element will be appended into the body.
1010
*
1111
* @param {object} opts the options for this ActionSheet (see docs)
@@ -16,7 +16,7 @@ angular.module('ionic.service.loading', ['ionic.ui.loading'])
1616
animation: 'fade-in',
1717
showBackdrop: true,
1818
maxWidth: 200,
19-
showDelay: 2000
19+
showDelay: 0
2020
};
2121

2222
opts = angular.extend(defaults, opts);

0 commit comments

Comments
 (0)