Merge pull request #4392 from matiu/bug/spinner
add spinner to ongoing notifications
This commit is contained in:
commit
6158a96173
1 changed files with 3 additions and 1 deletions
|
|
@ -54,8 +54,10 @@ angular.module('copayApp.services').factory('ongoingProcess', function($log, $ti
|
||||||
if (isCordova) {
|
if (isCordova) {
|
||||||
window.plugins.spinnerDialog.show(null, showName, true);
|
window.plugins.spinnerDialog.show(null, showName, true);
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
var tmpl = '<ion-spinner class="spinner-stable" icon="lines"></ion-spinner>' + showName;
|
||||||
$ionicLoading.show({
|
$ionicLoading.show({
|
||||||
template: showName,
|
template: tmpl,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue