diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/update-center/plugin-changelog-view.js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/update-center/plugin-changelog-view.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/update-center/plugin-changelog-view.js b/server/sonar-web/src/main/js/apps/update-center/plugin-changelog-view.js index 9ece2454bb7..bf96fc5ac1b 100644 --- a/server/sonar-web/src/main/js/apps/update-center/plugin-changelog-view.js +++ b/server/sonar-web/src/main/js/apps/update-center/plugin-changelog-view.js @@ -1,5 +1,6 @@ define([ 'components/common/popup', + '../../components/common/jquery-isolated-scroll', './templates' ], function (Popup) { @@ -7,18 +8,18 @@ define([ template: Templates['update-center-plugin-changelog'], onRender: function () { - this._super(); + Popup.prototype.onRender.apply(this, arguments); this.$('.bubble-popup-container').isolatedScroll(); this.$('[data-toggle="tooltip"]').tooltip({ container: 'body', placement: 'bottom' }); }, onClose: function () { - this._super(); + Popup.prototype.onClose.apply(this, arguments); this.$('[data-toggle="tooltip"]').tooltip('destroy'); }, serializeData: function () { - return _.extend(this._super(), { + return _.extend(Popup.prototype.serializeData.apply(this, arguments), { // if there is no status, this is a new plugin // => force COMPATIBLE status status: this.model.get('status') || 'COMPATIBLE' |