Browse Source

Removed some intervals for mobile

May be affects  #572
master
Igor Zhukov 10 years ago
parent
commit
41ff65fb01
  1. 2
      app/js/lib/mtproto_wrapper.js
  2. 9
      app/js/services.js

2
app/js/lib/mtproto_wrapper.js

@ -629,7 +629,7 @@ angular.module('izhukov.mtproto.wrapper', ['izhukov.utils', 'izhukov.mtproto']) @@ -629,7 +629,7 @@ angular.module('izhukov.mtproto.wrapper', ['izhukov.utils', 'izhukov.mtproto'])
var errorShowTime = 0;
function start() {
if (!started) {
if (!started && !Config.Navigator.mobile) {
started = true;
IdleManager.start();

9
app/js/services.js

@ -3394,13 +3394,14 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils']) @@ -3394,13 +3394,14 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils'])
titlePromise;
$rootScope.$watch('idle.isIDLE', function (newVal) {
// console.log('isIDLE watch', newVal);
if (!newVal) {
notificationsClear();
}
if (!Config.Navigator.mobile) {
$interval.cancel(titlePromise);
if (!newVal) {
document.title = titleBackup;
$('link[rel="icon"]:first').replaceWith(faviconBackupEl);
notificationsClear();
} else {
titleBackup = document.title;
@ -3418,7 +3419,9 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils']) @@ -3418,7 +3419,9 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils'])
}
}, 1000);
}
}
});
}
$rootScope.$on('apiUpdate', function (e, update) {
// console.log('on apiUpdate', update);

Loading…
Cancel
Save