Do not change browser title on autorefresh

fixes #6168
This commit is contained in:
Thomas Gelf 2014-05-09 10:13:49 +00:00
parent d0c56126b8
commit 2a28e60bb7
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@
}
var title = req.getResponseHeader('X-Icinga-Title');
if (title && req.$target.closest('.dashboard').length === 0) {
if (title && ! req.autorefresh && req.$target.closest('.dashboard').length === 0) {
this.icinga.ui.setTitle(title);
}