fix hidden sidebars in cordova

This commit is contained in:
Matias Alejo Garcia 2014-12-07 14:12:58 -03:00
commit 4be558d143
5 changed files with 17 additions and 7 deletions

View file

@ -113,12 +113,12 @@ angular
$idleProvider.warningDuration(40); // in seconds
$keepaliveProvider.interval(30); // in seconds
})
.run(function($rootScope, $location, $idle, gettextCatalog, uriHandler) {
.run(function($rootScope, $location, $idle, gettextCatalog, uriHandler, isCordova) {
gettextCatalog.currentLanguage = config.defaultLanguage;
// Register URI handler, not for mobileApp
if (!window.cordova) {
if (!isCordova) {
$idle.watch();
uriHandler.register();
}