11 lines
343 B
JavaScript
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();
|
|
});
|
|
});
|