Wallet/src/js/controllers/topbar.js

9 lines
223 B
JavaScript
Raw Normal View History

2015-03-06 12:00:10 -03:00
'use strict';
angular.module('copayApp.controllers').controller('topbarController', function($rootScope, $scope, $timeout, $modal, isCordova, isMobile, go) {
this.goHome = function() {
go.walletHome();
};
2015-03-06 12:00:10 -03:00
});