Merge pull request #2366 from cmgustavo/bug/improve-response-01

Ack!
This commit is contained in:
Matias Pando 2015-02-02 17:17:31 -03:00
commit 1b2605463a
5 changed files with 46 additions and 10 deletions

View file

@ -23,8 +23,12 @@ angular.module('copayApp.controllers').controller('IndexController', function($s
});
};
$scope.swipe = function(invert) {
go.swipe(invert);
$scope.openMenu = function() {
go.swipe(true);
};
$scope.closeMenu = function() {
go.swipe();
};
});

View file

@ -117,4 +117,8 @@ angular.module('copayApp.controllers').controller('SidebarController', function(
});
$scope.wallets = _.sortBy(ret, 'name');
};
$scope.openMenu = function() {
go.swipe(true);
};
});