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
commit 2063f74dab

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');