function renamed: more detailed

This commit is contained in:
Gustavo Maximiliano Cortez 2015-01-30 09:34:11 -03:00
commit 83aee4105e
2 changed files with 9 additions and 5 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();
};
});