Wallet/src/js/controllers/buyGlidera.js

13 lines
318 B
JavaScript
Raw Normal View History

2015-08-31 18:12:04 -03:00
'use strict';
angular.module('copayApp.controllers').controller('buyGlideraController',
function() {
this.getBuyPrice = function(token, price) {
var self = this;
glideraService.buyPrice(token, price, function(error, sellPrice) {
self.sellPrice = sellPrice;
});
};
});