not use idle timeout and urihandler if cordova is active

This commit is contained in:
Gustavo Maximiliano Cortez 2014-11-25 20:10:42 -03:00
parent 005853efac
commit 2063f74dab
1 changed files with 5 additions and 2 deletions

View File

@ -106,8 +106,11 @@ angular
}) })
.run(function($rootScope, $location, $idle, gettextCatalog, uriHandler) { .run(function($rootScope, $location, $idle, gettextCatalog, uriHandler) {
gettextCatalog.currentLanguage = config.defaultLanguage; gettextCatalog.currentLanguage = config.defaultLanguage;
$idle.watch(); // not for mobileApp
uriHandler.register(); if (!window.cordova) {
$idle.watch();
uriHandler.register();
}
$rootScope.$on('$routeChangeStart', function(event, next, current) { $rootScope.$on('$routeChangeStart', function(event, next, current) {
if (!localStorage || localStorage.length < 1) { if (!localStorage || localStorage.length < 1) {
$location.path('unsupported'); $location.path('unsupported');