Renames of variables

This commit is contained in:
Gustavo Maximiliano Cortez 2015-04-29 18:09:26 -03:00
commit 826ea930b1
3 changed files with 11 additions and 11 deletions

View file

@ -651,17 +651,17 @@ angular.module('copayApp.controllers').controller('indexController', function($r
$rootScope.$on('Animation/Disable', function(event) {
$timeout(function() {
self.swipeLeft = false;
self.swipeRight = false;
self.slideLeft = false;
self.slideRight = false;
}, 370);
});
$rootScope.$on('Animation/SwipeLeft', function(event) {
self.swipeLeft = true;
$rootScope.$on('Animation/SlideLeft', function(event) {
self.slideLeft = true;
});
$rootScope.$on('Animation/SwipeRight', function(event) {
self.swipeRight = true;
$rootScope.$on('Animation/SlideRight', function(event) {
self.slideRight = true;
});