|
@@ -56,7 +56,6 @@ App.MainAlertDefinitionsView = App.TableView.extend({
|
|
Em.run.next(function () {
|
|
Em.run.next(function () {
|
|
self.set('isInitialRendering', false);
|
|
self.set('isInitialRendering', false);
|
|
self.tooltipsUpdater();
|
|
self.tooltipsUpdater();
|
|
- self.addObserver('pageContent.length', self, 'tooltipsUpdater');
|
|
|
|
});
|
|
});
|
|
},
|
|
},
|
|
|
|
|
|
@@ -494,6 +493,7 @@ App.MainAlertDefinitionsView = App.TableView.extend({
|
|
if (this.get('paginationLeftClass') === 'paginate_previous') {
|
|
if (this.get('paginationLeftClass') === 'paginate_previous') {
|
|
this._super();
|
|
this._super();
|
|
}
|
|
}
|
|
|
|
+ this.tooltipsUpdater();
|
|
},
|
|
},
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -504,6 +504,7 @@ App.MainAlertDefinitionsView = App.TableView.extend({
|
|
if (this.get('paginationRightClass') === 'paginate_next') {
|
|
if (this.get('paginationRightClass') === 'paginate_next') {
|
|
this._super();
|
|
this._super();
|
|
}
|
|
}
|
|
|
|
+ this.tooltipsUpdater();
|
|
},
|
|
},
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -520,6 +521,7 @@ App.MainAlertDefinitionsView = App.TableView.extend({
|
|
if (!this.get('isInitialRendering')) {
|
|
if (!this.get('isInitialRendering')) {
|
|
this._super(iColumn, value, type);
|
|
this._super(iColumn, value, type);
|
|
}
|
|
}
|
|
|
|
+ this.tooltipsUpdater();
|
|
}
|
|
}
|
|
|
|
|
|
});
|
|
});
|