Wallet/src/js/controllers/sellGlidera.js

14 lines
333 B
JavaScript
Raw Normal View History

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