13 lines
226 B
JavaScript
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();
|
|
};
|
|
|
|
});
|