From 172759c7119c6d8cce5f8878d133ca090e168314 Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Thu, 11 Dec 2014 20:12:43 -0300 Subject: [PATCH] enable swipe for all devices with touch screen --- js/controllers/index.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/js/controllers/index.js b/js/controllers/index.js index 7374423b9..285506ee9 100644 --- a/js/controllers/index.js +++ b/js/controllers/index.js @@ -6,9 +6,7 @@ angular.module('copayApp.controllers').controller('IndexController', function($s }; $scope.swipe = function(invert) { - if (isCordova) { - go.swipe(invert); - } + go.swipe(invert); }; });