Wallet/src/js/controllers/topbar.js
Gustavo Maximiliano Cortez 0c06a3d460
Change top-bar color
2015-12-01 17:16:39 -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();
};
});