Wallet/old/topbar.js
Matias Alejo Garcia a8cf875def
rm go
2016-08-19 13:07:18 -03:00

13 lines
226 B
JavaScript

'use strict';
angular.module('copayApp.controllers').controller('topbarController', function(go) {
this.goHome = function() {
go.walletHome();
};
this.goPreferences = function() {
go.preferences();
};
});