added lots of shapeshift related code
This commit is contained in:
parent
2f07290dea
commit
c4c8008573
12 changed files with 669 additions and 0 deletions
16
src/js/directives/shapeshiftCoinError.js
Normal file
16
src/js/directives/shapeshiftCoinError.js
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
'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'
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue