Timeline: Do not enable infinite scrolling when shown in the dashboard

refs #7876
This commit is contained in:
Johannes Meyer 2015-04-20 13:25:29 +02:00
parent 76305269a9
commit 0be8b8997b
1 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,8 @@
/**
* Prepare the timer to handle the timeline's infinite loading
*/
if ($('div.timeline').length) {
var $timeline = $('div.timeline');
if ($timeline.length && !$timeline.closest('.dashboard').length) {
if (this.scrollCheckTimer === null) {
this.scrollCheckTimer = this.module.icinga.timer.register(
this.checkTimelinePosition,