Glidera - buy/sell

This commit is contained in:
Gustavo Maximiliano Cortez 2015-08-31 18:12:04 -03:00
commit e266ded1d1
10 changed files with 309 additions and 32 deletions

View file

@ -0,0 +1,13 @@
'use strict';
angular.module('copayApp.controllers').controller('glideraController',
function(glideraService) {
this.init = function(token) {
var self = this;
glideraService.getTransactions(token, function(error, txs) {
self.txs = txs;
});
};
});