20 lines
516 B
JavaScript
20 lines
516 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
angular.module('copayApp.directives')
|
||
|
|
.directive('clickToAccept', function() {
|
||
|
|
return {
|
||
|
|
restrict: 'E',
|
||
|
|
templateUrl: 'views/includes/clickToAccept.html',
|
||
|
|
transclude: true,
|
||
|
|
scope: {
|
||
|
|
sendStatus: '=clickSendStatus',
|
||
|
|
},
|
||
|
|
link: function(scope, element, attrs) {
|
||
|
|
scope.$watch('sendStatus', function() {
|
||
|
|
if(scope.sendStatus !== 'success') {
|
||
|
|
scope.displaySendStatus = scope.sendStatus;
|
||
|
|
}
|
||
|
|
});
|
||
|
|
}
|
||
|
|
};
|
||
|
|
});
|