From f98ebe5bd99f828ff73dd6bd0249da69dd294b56 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Tue, 14 Jun 2016 18:19:45 -0300 Subject: [PATCH] add spinner to ongoing notifications --- src/js/services/onGoingProcess.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/js/services/onGoingProcess.js b/src/js/services/onGoingProcess.js index 45eb69f63..48179e6f2 100644 --- a/src/js/services/onGoingProcess.js +++ b/src/js/services/onGoingProcess.js @@ -54,8 +54,10 @@ angular.module('copayApp.services').factory('ongoingProcess', function($log, $ti if (isCordova) { window.plugins.spinnerDialog.show(null, showName, true); } else { + + var tmpl = '' + showName; $ionicLoading.show({ - template: showName, + template: tmpl, }); } } else {