16 lines
437 B
JavaScript
16 lines
437 B
JavaScript
'use strict';
|
|
|
|
angular.module('copayApp.directives').directive('shapeshiftCoinError', function(shapeshiftApiService) {
|
|
return {
|
|
require:['^shapeshiftCoinTrader'],
|
|
restrict: 'E',
|
|
transclude: true,
|
|
scope: {
|
|
depositInfo : '=ssError'
|
|
},
|
|
link: function(scope, element, attrs, controllers) {
|
|
|
|
},
|
|
templateUrl: 'views/includes/shapeshift-coin-error.html'
|
|
}
|
|
});
|