Wallet/old/topbar.js

13 lines
226 B
JavaScript
Raw Normal View History

2015-03-06 12:00:10 -03:00
'use strict';
2015-12-01 17:16:39 -03:00
angular.module('copayApp.controllers').controller('topbarController', function(go) {
2015-03-06 12:00:10 -03:00
this.goHome = function() {
go.walletHome();
};
2015-12-01 17:16:39 -03:00
this.goPreferences = function() {
go.preferences();
};
2015-03-06 12:00:10 -03:00
});