copay/old/topbar.js

14 lines
226 B
JavaScript
Raw Normal View History

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