hide menu in accept terms view

This commit is contained in:
Gabriel Bazán 2016-07-11 10:06:09 -03:00
commit c54a6c0875
4 changed files with 10 additions and 4 deletions

View file

@ -1672,6 +1672,10 @@ angular.module('copayApp.controllers').controller('indexController', function($r
self.setTab(tab, reset);
});
$rootScope.$on('disclaimerAccepted', function(event) {
$scope.isDisclaimerAccepted = true;
});
$rootScope.$on('Local/WindowResize', function() {
self.physicalScreenWidth = ((window.innerWidth > 0) ? window.innerWidth : screen.width);
});