From 728ae3ec0daa0a617a4bf4097109f41d5cf68077 Mon Sep 17 00:00:00 2001 From: Matias Pando Date: Sat, 20 Dec 2014 08:23:32 -0300 Subject: [PATCH] Allow older Android versions --- js/routes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/routes.js b/js/routes.js index c39314443..1f443ee76 100644 --- a/js/routes.js +++ b/js/routes.js @@ -145,7 +145,7 @@ angular } $rootScope.$on('$routeChangeStart', function(event, next, current) { - if (unsupported) { + if (unsupported && !isCordova) { $location.path('unsupported'); return; }