Fix layout on Safari when click on sidebar and then on send
This commit is contained in:
parent
e0ccb14ab5
commit
f329284210
4 changed files with 33 additions and 42 deletions
|
|
@ -1,10 +1,10 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('JoinController',
|
||||
function($scope, $rootScope, $timeout, controllerUtils, notification) {
|
||||
function($scope, $rootScope, $timeout, isMobile, controllerUtils, notification) {
|
||||
$rootScope.fromSetup = false;
|
||||
$scope.loading = false;
|
||||
$scope.isMobile = !!window.cordova;
|
||||
$scope.isMobile = isMobile.any();
|
||||
$rootScope.title = 'Join shared wallet';
|
||||
|
||||
// QR code Scanner
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue