Allow older Android versions

This commit is contained in:
Matias Pando 2014-12-20 08:23:32 -03:00
parent f24d1c7347
commit 728ae3ec0d
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ angular
}
$rootScope.$on('$routeChangeStart', function(event, next, current) {
if (unsupported) {
if (unsupported && !isCordova) {
$location.path('unsupported');
return;
}