* Если окно активное, мы не меняем заголовок

This commit is contained in:
Nokita Kaze 2015-01-03 00:32:17 +03:00
parent d166ece3dd
commit e6d8c31d7a
2 changed files with 29 additions and 2 deletions

View File

@ -1231,6 +1231,32 @@ function set_comments_refresh_tick(current_options) {
setInterval(function() {
comments_count_refresh_tick(current_options);
}, 60000);
// Ставим слежение за позицией мыши
if (current_options.option_other_comments_count_refresh_title.value == true) {
$(document).
on('mouseenter', function() {
set_comments_refresh_clear_title_marks();
}).on('mouseleave', function() {
window_focused = false;
});
$(window).
on('focus', function() {
set_comments_refresh_clear_title_marks();
}).on('blur', function() {
window_focused = false;
});
}
}
var window_focused = true;
// Очищаем [0; 0]
function set_comments_refresh_clear_title_marks() {
var new_title = document.title.replace(new RegExp('^\\[[0-9]+\\; [0-9]+\\] '), '');
document.title = new_title;
window_focused = true;
}
// Проверка обновления комментариев, обновляется по крону
@ -1280,7 +1306,8 @@ function comments_count_refresh_tick(current_options) {
$('#main #left-menu #menu-comments .unread').text('0').hide();
}
if (current_options.option_other_comments_count_refresh_title.value == true) {
if ((current_options.option_other_comments_count_refresh_title.value == true) &&
(!window_focused)) {
var new_title = document.title.replace(new RegExp('^\\[[0-9]+\\; [0-9]+\\] '), '');
if ((count_recent > 0) || (count_comments > 0)) {
new_title = '[' + count_recent + '; ' + count_comments + '] ' + new_title;

View File

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Point+",
"version": "1.18.5",
"version": "1.18.6",
"default_locale": "ru",
"author": "__MSG_ext_author__",
"homepage_url": "https://bitbucket.org/skobkin/chrome_point_plus",