parent
e828e25a7a
commit
90df02e10b
@ -1397,7 +1397,8 @@ angular.module('myApp.controllers', ['myApp.i18n'])
|
|||||||
}
|
}
|
||||||
|
|
||||||
function toggleMessage (messageID, $event) {
|
function toggleMessage (messageID, $event) {
|
||||||
if ($scope.historyState.startBot) {
|
if ($scope.historyState.startBot ||
|
||||||
|
$rootScope.idle.afterFocus) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1005,6 +1005,13 @@ angular.module('izhukov.utils', [])
|
|||||||
}, 30000);
|
}, 30000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (e.type == 'focus' && !$rootScope.idle.afterFocus) {
|
||||||
|
$rootScope.idle.afterFocus = true;
|
||||||
|
setTimeout(function () {
|
||||||
|
delete $rootScope.idle.afterFocus;
|
||||||
|
}, 10);
|
||||||
|
}
|
||||||
|
|
||||||
if ($rootScope.idle.isIDLE == isIDLE) {
|
if ($rootScope.idle.isIDLE == isIDLE) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user