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
|
|
|
|
2015-04-24 03:22:06 -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
|
|
|
});
|