Wallet/src/js/controllers/glidera.js

13 lines
289 B
JavaScript
Raw Normal View History

2015-08-31 18:12:04 -03:00
'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;
});
};
});