Replaced actual gif loading for css3 animation used on signing process.

This commit is contained in:
Gustavo Cortez 2014-05-08 12:25:35 -03:00
commit afceeffd03
3 changed files with 6 additions and 2 deletions

View file

@ -72,7 +72,7 @@ angular.module('copay.directives')
var text = attr.loading;
scope.$watch('loading', function(val) {
if (val) {
element.html('<img src="img/loading.gif"> ' + text + '...');
element.html('<i class="size-21 fi-bitcoin-circle icon-rotate spinner"></i> ' + text + '...');
} else {
element.html(a);
}