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) {
gettextCatalog.currentLanguage = config.defaultLanguage;
$idle.watch();
uriHandler.register();
// not for mobileApp
if (!window.cordova) {
$idle.watch();
uriHandler.register();
}
$rootScope.$on('$routeChangeStart', function(event, next, current) {
if (!localStorage || localStorage.length < 1) {
$location.path('unsupported');