Fix open external in new tab and fix typo

This commit is contained in:
Yemel Jardi 2014-07-31 14:06:55 -03:00
commit e5fd3c38f4
3 changed files with 21 additions and 22 deletions

View file

@ -198,24 +198,31 @@ angular.module('copayApp.directives')
}
};
})
// From https://gist.github.com/asafge/7430497
.directive('ngReallyClick', [
function() {
.directive('openExternal', function() {
return {
restrict: 'A',
link: function(scope, element, attrs) {
element.bind('click', function() {
var message = attrs.ngReallyMessage;
if (message && confirm(message)) {
scope.$apply(attrs.ngReallyClick);
}
window.open('bitcoin:'+attrs.address, '_blank');
});
}
}
}
])
})
// From https://gist.github.com/asafge/7430497
.directive('ngReallyClick', [function() {
return {
restrict: 'A',
link: function(scope, element, attrs) {
element.bind('click', function() {
var message = attrs.ngReallyMessage;
if (message && confirm(message)) {
scope.$apply(attrs.ngReallyClick);
}
});
}
}
}
])
.directive('match', function () {
return {
require: 'ngModel',
@ -231,5 +238,4 @@ angular.module('copayApp.directives')
});
}
};
})
;
});