Wallet/src/js/directives/shapeshiftCoinError.js
2017-12-08 18:02:30 +09:00

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'
}
});