Wallet/src/js/controllers/buyandsellController.js
2017-01-30 18:04:17 -03:00

11 lines
343 B
JavaScript

'use strict';
angular.module('copayApp.controllers').controller('buyandsellController', function($scope, $ionicHistory, buyAndSellService, lodash) {
$scope.$on("$ionicView.beforeEnter", function(event, data) {
$scope.services = buyAndSellService.get();
if (lodash.isEmpty($scope.services))
$ionicHistory.goBack();
});
});